operator-framework / operator-lifecycle-manager

A management framework for extending Kubernetes with Operators
https://olm.operatorframework.io
Apache License 2.0
1.72k stars 545 forks source link

Installation fails on microk8s #2777

Closed joaomlneto closed 2 years ago

joaomlneto commented 2 years ago

Bug Report

Operator Lifecycle Manager install.sh script fails to install on a new microk8s cluster on a clean Ubuntu 20.04 installation.

Some observations


Steps to reproduce:

  1. Get an instance in Hetzner Cloud (I got a 16-core, 32GB RAM, just in case…)
  2. apt update && apt upgrade -y && apt install snapd -y && snap install microk8s --classic && snap install kubectl --classic
  3. mkdir ~/.kube && microk8s config > .kube/config
  4. Pick a version of OLM to install:

Expected

# kubectl get csv -A
NAMESPACE   NAME            DISPLAY          VERSION   REPLACES   PHASE
olm         packageserver   Package Server   0.20.0               Succeeded

Actual Result

# curl -sL https://raw.githubusercontent.com/exdx/operator-lifecycle-manager/33e86c2850975a793e121b200476a95511179dc6/scripts/install.sh | bash -s v0.21.1
customresourcedefinition.apiextensions.k8s.io/catalogsources.operators.coreos.com created
customresourcedefinition.apiextensions.k8s.io/clusterserviceversions.operators.coreos.com created
customresourcedefinition.apiextensions.k8s.io/installplans.operators.coreos.com created
customresourcedefinition.apiextensions.k8s.io/olmconfigs.operators.coreos.com created
customresourcedefinition.apiextensions.k8s.io/operatorconditions.operators.coreos.com created
customresourcedefinition.apiextensions.k8s.io/operatorgroups.operators.coreos.com created
customresourcedefinition.apiextensions.k8s.io/operators.operators.coreos.com created
customresourcedefinition.apiextensions.k8s.io/subscriptions.operators.coreos.com created
customresourcedefinition.apiextensions.k8s.io/catalogsources.operators.coreos.com condition met
customresourcedefinition.apiextensions.k8s.io/clusterserviceversions.operators.coreos.com condition met
customresourcedefinition.apiextensions.k8s.io/installplans.operators.coreos.com condition met
customresourcedefinition.apiextensions.k8s.io/olmconfigs.operators.coreos.com condition met
customresourcedefinition.apiextensions.k8s.io/operatorconditions.operators.coreos.com condition met
customresourcedefinition.apiextensions.k8s.io/operatorgroups.operators.coreos.com condition met
customresourcedefinition.apiextensions.k8s.io/operators.operators.coreos.com condition met
customresourcedefinition.apiextensions.k8s.io/subscriptions.operators.coreos.com condition met
namespace/olm created
namespace/operators created
serviceaccount/olm-operator-serviceaccount created
clusterrole.rbac.authorization.k8s.io/system:controller:operator-lifecycle-manager created
clusterrolebinding.rbac.authorization.k8s.io/olm-operator-binding-olm created
olmconfig.operators.coreos.com/cluster created
deployment.apps/olm-operator created
deployment.apps/catalog-operator created
clusterrole.rbac.authorization.k8s.io/aggregate-olm-edit created
clusterrole.rbac.authorization.k8s.io/aggregate-olm-view created
operatorgroup.operators.coreos.com/global-operators created
operatorgroup.operators.coreos.com/olm-operators created
clusterserviceversion.operators.coreos.com/packageserver created
catalogsource.operators.coreos.com/operatorhubio-catalog created
Waiting for deployment "olm-operator" rollout to finish: 0 of 1 updated replicas are available...
deployment "olm-operator" successfully rolled out
Waiting for deployment "catalog-operator" rollout to finish: 0 of 1 updated replicas are available...
deployment "catalog-operator" successfully rolled out
Package server phase: Installing
CSV "packageserver" failed to reach phase succeeded
# kubectl get csv -A
NAMESPACE   NAME            DISPLAY          VERSION   REPLACES   PHASE
olm         packageserver   Package Server   0.20.0               Installing

Environment

Additional context Installing operators works fine, even if packageserver stays Installing (e.g. running kubectl create -f https://operatorhub.io/install/strimzi-kafka-operator.yaml)

timflannagan commented 2 years ago

@joaomlneto Anything in the OLM operator container logs that would help explain why the PackageServer CSV is stuck in an Installing state?

joaomlneto commented 2 years ago

Indeed, found the issue in the logs of olm-operator:

I0511 16:13:01.213718       1 event.go:285] Event(v1.ObjectReference{Kind:"ClusterServiceVersion", Namespace:"olm", Name:"packageserver", UID:"7ad0ebf6-e82b-467f-81a0-7d5a6905284d", APIVersion:"operators.coreos.com/v1alpha1", ResourceVersion:"11286", FieldPath:""}): type: 'Normal' reason: 'InstallSucceeded' install strategy completed with no errors
time="2022-05-11T16:13:01Z" level=warning msg="could not retrieve Role extension-apiserver-authentication-reader" apiservice=v1.packages.operators.coreos.com csv=packageserver namespace=olm
I0511 16:13:01.257885       1 event.go:285] Event(v1.ObjectReference{Kind:"ClusterServiceVersion", Namespace:"olm", Name:"packageserver", UID:"7ad0ebf6-e82b-467f-81a0-7d5a6905284d", APIVersion:"operators.coreos.com/v1alpha1", ResourceVersion:"11301", FieldPath:""}): type: 'Warning' reason: 'APIServiceResourceIssue' role.rbac.authorization.k8s.io "extension-apiserver-authentication-reader" not found
time="2022-05-11T16:13:01Z" level=warning msg="could not retrieve Role extension-apiserver-authentication-reader" apiservice=v1.packages.operators.coreos.com csv=packageserver namespace=olm

microk8s does not have Role-Based Access Control by default.

Enabling it via microk8s enable rbac (docs) solves the issue:

# kubectl get csv -A
NAMESPACE   NAME            DISPLAY          VERSION   REPLACES   PHASE
olm         packageserver   Package Server   0.21.1               Succeeded

Should this be documented somewhere?


Full logs

Pod olm-operator-745fb9c45-w5ggb:

``` time="2022-05-11T16:03:08Z" level=info msg="log level info" I0511 16:03:09.792275 1 request.go:665] Waited for 1.048195801s due to client-side throttling, not priority and fairness, request: GET:https://10.152.183.1:443/apis/storage.k8s.io/v1beta1?timeout=32s time="2022-05-11T16:03:10Z" level=info msg="connection established. cluster-version: v1.23.6-2+2a84a218e3cd52" time="2022-05-11T16:03:10Z" level=info msg="operator ready" time="2022-05-11T16:03:10Z" level=info msg="starting informers..." time="2022-05-11T16:03:10Z" level=info msg="informers started" time="2022-05-11T16:03:10Z" level=info msg="waiting for caches to sync..." time="2022-05-11T16:03:10Z" level=info msg="starting workers..." {"level":"info","ts":1652284990.65916,"logger":"controller.operatorcondition","msg":"Starting EventSource","reconciler group":"operators.coreos.com","reconciler kind":"OperatorCondition","source":"kind source: *v2.OperatorCondition"} {"level":"info","ts":1652284990.6592157,"logger":"controller.operatorcondition","msg":"Starting EventSource","reconciler group":"operators.coreos.com","reconciler kind":"OperatorCondition","source":"kind source: *v1.Role"} {"level":"info","ts":1652284990.659228,"logger":"controller.operatorcondition","msg":"Starting EventSource","reconciler group":"operators.coreos.com","reconciler kind":"OperatorCondition","source":"kind source: *v1.RoleBinding"} {"level":"info","ts":1652284990.6592398,"logger":"controller.operatorcondition","msg":"Starting EventSource","reconciler group":"operators.coreos.com","reconciler kind":"OperatorCondition","source":"kind source: *v1.Deployment"} {"level":"info","ts":1652284990.659248,"logger":"controller.operatorcondition","msg":"Starting Controller","reconciler group":"operators.coreos.com","reconciler kind":"OperatorCondition"} {"level":"info","ts":1652284990.6592798,"logger":"controller.operator","msg":"Starting EventSource","reconciler group":"operators.coreos.com","reconciler kind":"Operator","source":"kind source: *v1.Operator"} {"level":"info","ts":1652284990.6593347,"logger":"controller.operator","msg":"Starting EventSource","reconciler group":"operators.coreos.com","reconciler kind":"Operator","source":"kind source: *v1.Deployment"} {"level":"info","ts":1652284990.659344,"logger":"controller.operator","msg":"Starting EventSource","reconciler group":"operators.coreos.com","reconciler kind":"Operator","source":"kind source: *v1.Namespace"} {"level":"info","ts":1652284990.6593544,"logger":"controller.operator","msg":"Starting EventSource","reconciler group":"operators.coreos.com","reconciler kind":"Operator","source":"kind source: *v1.CustomResourceDefinition"} {"level":"info","ts":1652284990.6593647,"logger":"controller.operator","msg":"Starting EventSource","reconciler group":"operators.coreos.com","reconciler kind":"Operator","source":"kind source: *v1.APIService"} {"level":"info","ts":1652284990.6593728,"logger":"controller.operator","msg":"Starting EventSource","reconciler group":"operators.coreos.com","reconciler kind":"Operator","source":"kind source: *v1alpha1.Subscription"} {"level":"info","ts":1652284990.6593852,"logger":"controller.operator","msg":"Starting EventSource","reconciler group":"operators.coreos.com","reconciler kind":"Operator","source":"kind source: *v1alpha1.InstallPlan"} {"level":"info","ts":1652284990.6593933,"logger":"controller.operator","msg":"Starting EventSource","reconciler group":"operators.coreos.com","reconciler kind":"Operator","source":"kind source: *v1alpha1.ClusterServiceVersion"} {"level":"info","ts":1652284990.659401,"logger":"controller.operator","msg":"Starting EventSource","reconciler group":"operators.coreos.com","reconciler kind":"Operator","source":"kind source: *v2.OperatorCondition"} {"level":"info","ts":1652284990.6594114,"logger":"controller.operator","msg":"Starting EventSource","reconciler group":"operators.coreos.com","reconciler kind":"Operator","source":"kind source: *v1.PartialObjectMetadata"} {"level":"info","ts":1652284990.6594224,"logger":"controller.operator","msg":"Starting EventSource","reconciler group":"operators.coreos.com","reconciler kind":"Operator","source":"kind source: *v1.PartialObjectMetadata"} {"level":"info","ts":1652284990.65943,"logger":"controller.operator","msg":"Starting EventSource","reconciler group":"operators.coreos.com","reconciler kind":"Operator","source":"kind source: *v1.PartialObjectMetadata"} {"level":"info","ts":1652284990.659438,"logger":"controller.operator","msg":"Starting EventSource","reconciler group":"operators.coreos.com","reconciler kind":"Operator","source":"kind source: *v1.PartialObjectMetadata"} {"level":"info","ts":1652284990.6594453,"logger":"controller.operator","msg":"Starting EventSource","reconciler group":"operators.coreos.com","reconciler kind":"Operator","source":"kind source: *v1.PartialObjectMetadata"} {"level":"info","ts":1652284990.6594584,"logger":"controller.operator","msg":"Starting EventSource","reconciler group":"operators.coreos.com","reconciler kind":"Operator","source":"kind source: *v1.PartialObjectMetadata"} {"level":"info","ts":1652284990.6594658,"logger":"controller.operator","msg":"Starting EventSource","reconciler group":"operators.coreos.com","reconciler kind":"Operator","source":"kind source: *v1.PartialObjectMetadata"} {"level":"info","ts":1652284990.6594725,"logger":"controller.operator","msg":"Starting Controller","reconciler group":"operators.coreos.com","reconciler kind":"Operator"} {"level":"info","ts":1652284990.6597629,"logger":"controller.clusterserviceversion","msg":"Starting EventSource","reconciler group":"operators.coreos.com","reconciler kind":"ClusterServiceVersion","source":"kind source: *v1alpha1.ClusterServiceVersion"} {"level":"info","ts":1652284990.6597886,"logger":"controller.clusterserviceversion","msg":"Starting EventSource","reconciler group":"operators.coreos.com","reconciler kind":"ClusterServiceVersion","source":"kind source: *v2.OperatorCondition"} {"level":"info","ts":1652284990.6597974,"logger":"controller.clusterserviceversion","msg":"Starting Controller","reconciler group":"operators.coreos.com","reconciler kind":"ClusterServiceVersion"} {"level":"info","ts":1652284990.6601043,"logger":"controller.clusterserviceversion","msg":"Starting EventSource","reconciler group":"operators.coreos.com","reconciler kind":"ClusterServiceVersion","source":"kind source: *v1alpha1.ClusterServiceVersion"} {"level":"info","ts":1652284990.6601636,"logger":"controller.clusterserviceversion","msg":"Starting EventSource","reconciler group":"operators.coreos.com","reconciler kind":"ClusterServiceVersion","source":"kind source: *v1.Deployment"} {"level":"info","ts":1652284990.6601777,"logger":"controller.clusterserviceversion","msg":"Starting EventSource","reconciler group":"operators.coreos.com","reconciler kind":"ClusterServiceVersion","source":"kind source: *v1.Namespace"} {"level":"info","ts":1652284990.6601882,"logger":"controller.clusterserviceversion","msg":"Starting EventSource","reconciler group":"operators.coreos.com","reconciler kind":"ClusterServiceVersion","source":"kind source: *v1.Service"} {"level":"info","ts":1652284990.6601968,"logger":"controller.clusterserviceversion","msg":"Starting EventSource","reconciler group":"operators.coreos.com","reconciler kind":"ClusterServiceVersion","source":"kind source: *v1.CustomResourceDefinition"} {"level":"info","ts":1652284990.6602063,"logger":"controller.clusterserviceversion","msg":"Starting EventSource","reconciler group":"operators.coreos.com","reconciler kind":"ClusterServiceVersion","source":"kind source: *v1.APIService"} {"level":"info","ts":1652284990.6602144,"logger":"controller.clusterserviceversion","msg":"Starting EventSource","reconciler group":"operators.coreos.com","reconciler kind":"ClusterServiceVersion","source":"kind source: *v1alpha1.Subscription"} {"level":"info","ts":1652284990.660223,"logger":"controller.clusterserviceversion","msg":"Starting EventSource","reconciler group":"operators.coreos.com","reconciler kind":"ClusterServiceVersion","source":"kind source: *v2.OperatorCondition"} {"level":"info","ts":1652284990.6602318,"logger":"controller.clusterserviceversion","msg":"Starting EventSource","reconciler group":"operators.coreos.com","reconciler kind":"ClusterServiceVersion","source":"kind source: *v1.PartialObjectMetadata"} {"level":"info","ts":1652284990.66024,"logger":"controller.clusterserviceversion","msg":"Starting EventSource","reconciler group":"operators.coreos.com","reconciler kind":"ClusterServiceVersion","source":"kind source: *v1.PartialObjectMetadata"} {"level":"info","ts":1652284990.660249,"logger":"controller.clusterserviceversion","msg":"Starting EventSource","reconciler group":"operators.coreos.com","reconciler kind":"ClusterServiceVersion","source":"kind source: *v1.PartialObjectMetadata"} {"level":"info","ts":1652284990.6602597,"logger":"controller.clusterserviceversion","msg":"Starting EventSource","reconciler group":"operators.coreos.com","reconciler kind":"ClusterServiceVersion","source":"kind source: *v1.PartialObjectMetadata"} {"level":"info","ts":1652284990.6602678,"logger":"controller.clusterserviceversion","msg":"Starting EventSource","reconciler group":"operators.coreos.com","reconciler kind":"ClusterServiceVersion","source":"kind source: *v1.PartialObjectMetadata"} {"level":"info","ts":1652284990.660279,"logger":"controller.clusterserviceversion","msg":"Starting EventSource","reconciler group":"operators.coreos.com","reconciler kind":"ClusterServiceVersion","source":"kind source: *v1.PartialObjectMetadata"} {"level":"info","ts":1652284990.6602867,"logger":"controller.clusterserviceversion","msg":"Starting EventSource","reconciler group":"operators.coreos.com","reconciler kind":"ClusterServiceVersion","source":"kind source: *v1.PartialObjectMetadata"} {"level":"info","ts":1652284990.660293,"logger":"controller.clusterserviceversion","msg":"Starting Controller","reconciler group":"operators.coreos.com","reconciler kind":"ClusterServiceVersion"} {"level":"info","ts":1652284990.6611593,"logger":"controller.subscription","msg":"Starting EventSource","reconciler group":"operators.coreos.com","reconciler kind":"Subscription","source":"kind source: *v1alpha1.Subscription"} {"level":"info","ts":1652284990.6612227,"logger":"controller.subscription","msg":"Starting EventSource","reconciler group":"operators.coreos.com","reconciler kind":"Subscription","source":"kind source: *v1alpha1.ClusterServiceVersion"} {"level":"info","ts":1652284990.6612315,"logger":"controller.subscription","msg":"Starting EventSource","reconciler group":"operators.coreos.com","reconciler kind":"Subscription","source":"kind source: *v1alpha1.InstallPlan"} {"level":"info","ts":1652284990.6612384,"logger":"controller.subscription","msg":"Starting Controller","reconciler group":"operators.coreos.com","reconciler kind":"Subscription"} time="2022-05-11T16:03:10Z" level=info msg="install strategy successful" csv=packageserver id=8I0mO namespace=olm phase=Installing strategy=deployment I0511 16:03:10.712828 1 event.go:285] Event(v1.ObjectReference{Kind:"ClusterServiceVersion", Namespace:"olm", Name:"packageserver", UID:"7ad0ebf6-e82b-467f-81a0-7d5a6905284d", APIVersion:"operators.coreos.com/v1alpha1", ResourceVersion:"6903", FieldPath:""}): type: 'Normal' reason: 'InstallSucceeded' install strategy completed with no errors time="2022-05-11T16:03:10Z" level=info msg="install strategy successful" csv=packageserver id=ZH0q3 namespace=olm phase=Installing strategy=deployment I0511 16:03:10.757125 1 event.go:285] Event(v1.ObjectReference{Kind:"ClusterServiceVersion", Namespace:"olm", Name:"packageserver", UID:"7ad0ebf6-e82b-467f-81a0-7d5a6905284d", APIVersion:"operators.coreos.com/v1alpha1", ResourceVersion:"6903", FieldPath:""}): type: 'Normal' reason: 'InstallSucceeded' install strategy completed with no errors {"level":"info","ts":1652284990.7608395,"logger":"controller.operatorcondition","msg":"Starting workers","reconciler group":"operators.coreos.com","reconciler kind":"OperatorCondition","worker count":1} {"level":"info","ts":1652284990.7611964,"logger":"controller.clusterserviceversion","msg":"Starting workers","reconciler group":"operators.coreos.com","reconciler kind":"ClusterServiceVersion","worker count":1} {"level":"info","ts":1652284990.7640688,"logger":"controller.subscription","msg":"Starting workers","reconciler group":"operators.coreos.com","reconciler kind":"Subscription","worker count":1} {"level":"info","ts":1652284990.7644396,"logger":"controller.operator","msg":"Starting workers","reconciler group":"operators.coreos.com","reconciler kind":"Operator","worker count":1} {"level":"info","ts":1652284990.7645075,"logger":"controller.clusterserviceversion","msg":"Starting workers","reconciler group":"operators.coreos.com","reconciler kind":"ClusterServiceVersion","worker count":1} time="2022-05-11T16:03:10Z" level=info msg="error updating ClusterServiceVersion status: Operation cannot be fulfilled on clusterserviceversions.operators.coreos.com \"packageserver\": the object has been modified; please apply your changes to the latest version and try again" csv=packageserver id=mqUxp namespace=olm phase=Installing E0511 16:03:10.773431 1 queueinformer_operator.go:290] sync {"update" "olm/packageserver"} failed: error updating ClusterServiceVersion status: Operation cannot be fulfilled on clusterserviceversions.operators.coreos.com "packageserver": the object has been modified; please apply your changes to the latest version and try again time="2022-05-11T16:03:10Z" level=warning msg="could not retrieve Role extension-apiserver-authentication-reader" apiservice=v1.packages.operators.coreos.com csv=packageserver namespace=olm I0511 16:03:10.779435 1 event.go:285] Event(v1.ObjectReference{Kind:"ClusterServiceVersion", Namespace:"olm", Name:"packageserver", UID:"7ad0ebf6-e82b-467f-81a0-7d5a6905284d", APIVersion:"operators.coreos.com/v1alpha1", ResourceVersion:"6950", FieldPath:""}): type: 'Warning' reason: 'APIServiceResourceIssue' role.rbac.authorization.k8s.io "extension-apiserver-authentication-reader" not found time="2022-05-11T16:03:10Z" level=warning msg="could not retrieve Role extension-apiserver-authentication-reader" apiservice=v1.packages.operators.coreos.com csv=packageserver namespace=olm I0511 16:03:10.805481 1 event.go:285] Event(v1.ObjectReference{Kind:"ClusterServiceVersion", Namespace:"olm", Name:"packageserver", UID:"7ad0ebf6-e82b-467f-81a0-7d5a6905284d", APIVersion:"operators.coreos.com/v1alpha1", ResourceVersion:"6950", FieldPath:""}): type: 'Warning' reason: 'APIServiceResourceIssue' role.rbac.authorization.k8s.io "extension-apiserver-authentication-reader" not found time="2022-05-11T16:03:10Z" level=info msg="error updating ClusterServiceVersion status: Operation cannot be fulfilled on clusterserviceversions.operators.coreos.com \"packageserver\": the object has been modified; please apply your changes to the latest version and try again" csv=packageserver id=Dxi5z namespace=olm phase=Succeeded E0511 16:03:10.826432 1 queueinformer_operator.go:290] sync {"update" "olm/packageserver"} failed: error updating ClusterServiceVersion status: Operation cannot be fulfilled on clusterserviceversions.operators.coreos.com "packageserver": the object has been modified; please apply your changes to the latest version and try again time="2022-05-11T16:03:10Z" level=warning msg="could not retrieve Role extension-apiserver-authentication-reader" apiservice=v1.packages.operators.coreos.com csv=packageserver namespace=olm I0511 16:03:10.859029 1 event.go:285] Event(v1.ObjectReference{Kind:"ClusterServiceVersion", Namespace:"olm", Name:"packageserver", UID:"7ad0ebf6-e82b-467f-81a0-7d5a6905284d", APIVersion:"operators.coreos.com/v1alpha1", ResourceVersion:"6953", FieldPath:""}): type: 'Normal' reason: 'APIServiceResourcesNeedReinstall' role.rbac.authorization.k8s.io "extension-apiserver-authentication-reader" not found time="2022-05-11T16:03:10Z" level=warning msg="could not retrieve Role extension-apiserver-authentication-reader" apiservice=v1.packages.operators.coreos.com csv=packageserver namespace=olm I0511 16:03:10.896869 1 event.go:285] Event(v1.ObjectReference{Kind:"ClusterServiceVersion", Namespace:"olm", Name:"packageserver", UID:"7ad0ebf6-e82b-467f-81a0-7d5a6905284d", APIVersion:"operators.coreos.com/v1alpha1", ResourceVersion:"6953", FieldPath:""}): type: 'Normal' reason: 'APIServiceResourcesNeedReinstall' role.rbac.authorization.k8s.io "extension-apiserver-authentication-reader" not found time="2022-05-11T16:03:10Z" level=info msg="error updating ClusterServiceVersion status: Operation cannot be fulfilled on clusterserviceversions.operators.coreos.com \"packageserver\": the object has been modified; please apply your changes to the latest version and try again" csv=packageserver id=IfTy9 namespace=olm phase=Failed E0511 16:03:10.907120 1 queueinformer_operator.go:290] sync {"update" "olm/packageserver"} failed: error updating ClusterServiceVersion status: Operation cannot be fulfilled on clusterserviceversions.operators.coreos.com "packageserver": the object has been modified; please apply your changes to the latest version and try again time="2022-05-11T16:03:11Z" level=info msg="scheduling ClusterServiceVersion for install" csv=packageserver id=fUDuo namespace=olm phase=Pending I0511 16:03:11.012316 1 event.go:285] Event(v1.ObjectReference{Kind:"ClusterServiceVersion", Namespace:"olm", Name:"packageserver", UID:"7ad0ebf6-e82b-467f-81a0-7d5a6905284d", APIVersion:"operators.coreos.com/v1alpha1", ResourceVersion:"6955", FieldPath:""}): type: 'Normal' reason: 'AllRequirementsMet' all requirements found, attempting install time="2022-05-11T16:03:11Z" level=info msg="scheduling ClusterServiceVersion for install" csv=packageserver id=jm+WR namespace=olm phase=Pending I0511 16:03:11.174941 1 event.go:285] Event(v1.ObjectReference{Kind:"ClusterServiceVersion", Namespace:"olm", Name:"packageserver", UID:"7ad0ebf6-e82b-467f-81a0-7d5a6905284d", APIVersion:"operators.coreos.com/v1alpha1", ResourceVersion:"6955", FieldPath:""}): type: 'Normal' reason: 'AllRequirementsMet' all requirements found, attempting install time="2022-05-11T16:03:11Z" level=info msg="error updating ClusterServiceVersion status: Operation cannot be fulfilled on clusterserviceversions.operators.coreos.com \"packageserver\": the object has been modified; please apply your changes to the latest version and try again" csv=packageserver id=r/cBC namespace=olm phase=Pending E0511 16:03:11.196339 1 queueinformer_operator.go:290] sync {"update" "olm/packageserver"} failed: error updating ClusterServiceVersion status: Operation cannot be fulfilled on clusterserviceversions.operators.coreos.com "packageserver": the object has been modified; please apply your changes to the latest version and try again time="2022-05-11T16:03:11Z" level=warning msg="reusing existing cert packageserver-service-cert" I0511 16:03:11.401157 1 event.go:285] Event(v1.ObjectReference{Kind:"ClusterServiceVersion", Namespace:"olm", Name:"packageserver", UID:"7ad0ebf6-e82b-467f-81a0-7d5a6905284d", APIVersion:"operators.coreos.com/v1alpha1", ResourceVersion:"6958", FieldPath:""}): type: 'Normal' reason: 'InstallSucceeded' waiting for install components to report healthy time="2022-05-11T16:03:11Z" level=warning msg="reusing existing cert packageserver-service-cert" I0511 16:03:11.605211 1 event.go:285] Event(v1.ObjectReference{Kind:"ClusterServiceVersion", Namespace:"olm", Name:"packageserver", UID:"7ad0ebf6-e82b-467f-81a0-7d5a6905284d", APIVersion:"operators.coreos.com/v1alpha1", ResourceVersion:"6958", FieldPath:""}): type: 'Normal' reason: 'InstallSucceeded' waiting for install components to report healthy time="2022-05-11T16:03:11Z" level=info msg="error updating ClusterServiceVersion status: Operation cannot be fulfilled on clusterserviceversions.operators.coreos.com \"packageserver\": the object has been modified; please apply your changes to the latest version and try again" csv=packageserver id=k5jBu namespace=olm phase=InstallReady E0511 16:03:11.617649 1 queueinformer_operator.go:290] sync {"update" "olm/packageserver"} failed: error updating ClusterServiceVersion status: Operation cannot be fulfilled on clusterserviceversions.operators.coreos.com "packageserver": the object has been modified; please apply your changes to the latest version and try again time="2022-05-11T16:03:11Z" level=info msg="install strategy successful" csv=packageserver id=BmrSt namespace=olm phase=Installing strategy=deployment I0511 16:03:11.643355 1 event.go:285] Event(v1.ObjectReference{Kind:"ClusterServiceVersion", Namespace:"olm", Name:"packageserver", UID:"7ad0ebf6-e82b-467f-81a0-7d5a6905284d", APIVersion:"operators.coreos.com/v1alpha1", ResourceVersion:"6975", FieldPath:""}): type: 'Normal' reason: 'InstallWaiting' apiServices not installed time="2022-05-11T16:03:11Z" level=info msg="install strategy successful" csv=packageserver id=f9/82 namespace=olm phase=Installing strategy=deployment I0511 16:03:11.687553 1 event.go:285] Event(v1.ObjectReference{Kind:"ClusterServiceVersion", Namespace:"olm", Name:"packageserver", UID:"7ad0ebf6-e82b-467f-81a0-7d5a6905284d", APIVersion:"operators.coreos.com/v1alpha1", ResourceVersion:"6975", FieldPath:""}): type: 'Normal' reason: 'InstallWaiting' apiServices not installed time="2022-05-11T16:03:11Z" level=info msg="error updating ClusterServiceVersion status: Operation cannot be fulfilled on clusterserviceversions.operators.coreos.com \"packageserver\": the object has been modified; please apply your changes to the latest version and try again" csv=packageserver id=0EMVL namespace=olm phase=Installing E0511 16:03:11.704105 1 queueinformer_operator.go:290] sync {"update" "olm/packageserver"} failed: error updating ClusterServiceVersion status: Operation cannot be fulfilled on clusterserviceversions.operators.coreos.com "packageserver": the object has been modified; please apply your changes to the latest version and try again time="2022-05-11T16:03:11Z" level=info msg="install strategy successful" csv=packageserver id=a2i1Q namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:11Z" level=info msg="install strategy successful" csv=packageserver id=AL2E8 namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:11Z" level=info msg="install strategy successful" csv=packageserver id=wC/c0 namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:12Z" level=info msg="install strategy successful" csv=packageserver id=fFjad namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:12Z" level=info msg="install strategy successful" csv=packageserver id=rVZ4w namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:12Z" level=info msg="install strategy successful" csv=packageserver id=LrVUE namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:12Z" level=info msg="install strategy successful" csv=packageserver id=vCq0N namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:12Z" level=info msg="install strategy successful" csv=packageserver id=/Qnmb namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:12Z" level=info msg="install strategy successful" csv=packageserver id=lIgLk namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:12Z" level=info msg="install strategy successful" csv=packageserver id=uQ2r+ namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:12Z" level=info msg="install strategy successful" csv=packageserver id=KaxEC namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:12Z" level=info msg="install strategy successful" csv=packageserver id=MTMZP namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:12Z" level=info msg="install strategy successful" csv=packageserver id=IHK9S namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:13Z" level=info msg="install strategy successful" csv=packageserver id=nC5Sa namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:13Z" level=info msg="install strategy successful" csv=packageserver id=iGBVa namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:13Z" level=info msg="install strategy successful" csv=packageserver id=1Xqmv namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:13Z" level=info msg="install strategy successful" csv=packageserver id=HC6rQ namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:13Z" level=info msg="install strategy successful" csv=packageserver id=ltVni namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:13Z" level=info msg="install strategy successful" csv=packageserver id=eo4Za namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:13Z" level=info msg="install strategy successful" csv=packageserver id=O2o8l namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:13Z" level=info msg="install strategy successful" csv=packageserver id=5bp9F namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:13Z" level=info msg="install strategy successful" csv=packageserver id=kwpU1 namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:13Z" level=info msg="install strategy successful" csv=packageserver id=or3m+ namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:14Z" level=info msg="install strategy successful" csv=packageserver id=591PT namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:14Z" level=info msg="install strategy successful" csv=packageserver id=ul5Sq namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:14Z" level=info msg="install strategy successful" csv=packageserver id=xiSyU namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:14Z" level=info msg="install strategy successful" csv=packageserver id=OG+Fx namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:14Z" level=info msg="install strategy successful" csv=packageserver id=YBLnK namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:14Z" level=info msg="install strategy successful" csv=packageserver id=o+xwh namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:14Z" level=info msg="install strategy successful" csv=packageserver id=FwQDL namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:14Z" level=info msg="install strategy successful" csv=packageserver id=ZYy9U namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:14Z" level=info msg="install strategy successful" csv=packageserver id=KcZGt namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:14Z" level=info msg="install strategy successful" csv=packageserver id=Vtm+v namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:15Z" level=info msg="install strategy successful" csv=packageserver id=rqxAc namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:15Z" level=info msg="install strategy successful" csv=packageserver id=UZTPq namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:15Z" level=info msg="install strategy successful" csv=packageserver id=yae/Z namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:15Z" level=info msg="install strategy successful" csv=packageserver id=8dJal namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:15Z" level=info msg="install strategy successful" csv=packageserver id=48LKh namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:15Z" level=info msg="install strategy successful" csv=packageserver id=4/plP namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:15Z" level=info msg="install strategy successful" csv=packageserver id=wF21R namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:15Z" level=info msg="install strategy successful" csv=packageserver id=HzCkx namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:15Z" level=info msg="install strategy successful" csv=packageserver id=LWmiV namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:15Z" level=info msg="install strategy successful" csv=packageserver id=Tde7l namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:16Z" level=info msg="install strategy successful" csv=packageserver id=Wuw0l namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:16Z" level=info msg="install strategy successful" csv=packageserver id=8rzw0 namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:16Z" level=info msg="install strategy successful" csv=packageserver id=zV3r6 namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:16Z" level=info msg="install strategy successful" csv=packageserver id=o9Yo3 namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:16Z" level=info msg="install strategy successful" csv=packageserver id=ixGYS namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:16Z" level=info msg="install strategy successful" csv=packageserver id=fGBLc namespace=olm phase=Installing strategy=deployment I0511 16:03:16.566175 1 event.go:285] Event(v1.ObjectReference{Kind:"ClusterServiceVersion", Namespace:"olm", Name:"packageserver", UID:"7ad0ebf6-e82b-467f-81a0-7d5a6905284d", APIVersion:"operators.coreos.com/v1alpha1", ResourceVersion:"6989", FieldPath:""}): type: 'Normal' reason: 'InstallSucceeded' install strategy completed with no errors time="2022-05-11T16:03:16Z" level=warning msg="could not retrieve Role extension-apiserver-authentication-reader" apiservice=v1.packages.operators.coreos.com csv=packageserver namespace=olm I0511 16:03:16.604136 1 event.go:285] Event(v1.ObjectReference{Kind:"ClusterServiceVersion", Namespace:"olm", Name:"packageserver", UID:"7ad0ebf6-e82b-467f-81a0-7d5a6905284d", APIVersion:"operators.coreos.com/v1alpha1", ResourceVersion:"7004", FieldPath:""}): type: 'Warning' reason: 'APIServiceResourceIssue' role.rbac.authorization.k8s.io "extension-apiserver-authentication-reader" not found time="2022-05-11T16:03:16Z" level=warning msg="could not retrieve Role extension-apiserver-authentication-reader" apiservice=v1.packages.operators.coreos.com csv=packageserver namespace=olm I0511 16:03:16.762716 1 event.go:285] Event(v1.ObjectReference{Kind:"ClusterServiceVersion", Namespace:"olm", Name:"packageserver", UID:"7ad0ebf6-e82b-467f-81a0-7d5a6905284d", APIVersion:"operators.coreos.com/v1alpha1", ResourceVersion:"7006", FieldPath:""}): type: 'Normal' reason: 'APIServiceResourcesNeedReinstall' role.rbac.authorization.k8s.io "extension-apiserver-authentication-reader" not found time="2022-05-11T16:03:16Z" level=info msg="scheduling ClusterServiceVersion for install" csv=packageserver id=NwkHP namespace=olm phase=Pending I0511 16:03:16.912055 1 event.go:285] Event(v1.ObjectReference{Kind:"ClusterServiceVersion", Namespace:"olm", Name:"packageserver", UID:"7ad0ebf6-e82b-467f-81a0-7d5a6905284d", APIVersion:"operators.coreos.com/v1alpha1", ResourceVersion:"7009", FieldPath:""}): type: 'Normal' reason: 'AllRequirementsMet' all requirements found, attempting install time="2022-05-11T16:03:17Z" level=warning msg="reusing existing cert packageserver-service-cert" I0511 16:03:17.119212 1 event.go:285] Event(v1.ObjectReference{Kind:"ClusterServiceVersion", Namespace:"olm", Name:"packageserver", UID:"7ad0ebf6-e82b-467f-81a0-7d5a6905284d", APIVersion:"operators.coreos.com/v1alpha1", ResourceVersion:"7011", FieldPath:""}): type: 'Normal' reason: 'InstallSucceeded' waiting for install components to report healthy time="2022-05-11T16:03:17Z" level=warning msg="reusing existing cert packageserver-service-cert" I0511 16:03:17.317180 1 event.go:285] Event(v1.ObjectReference{Kind:"ClusterServiceVersion", Namespace:"olm", Name:"packageserver", UID:"7ad0ebf6-e82b-467f-81a0-7d5a6905284d", APIVersion:"operators.coreos.com/v1alpha1", ResourceVersion:"7011", FieldPath:""}): type: 'Normal' reason: 'InstallSucceeded' waiting for install components to report healthy time="2022-05-11T16:03:17Z" level=info msg="error updating ClusterServiceVersion status: Operation cannot be fulfilled on clusterserviceversions.operators.coreos.com \"packageserver\": the object has been modified; please apply your changes to the latest version and try again" csv=packageserver id=Elob7 namespace=olm phase=InstallReady E0511 16:03:17.326274 1 queueinformer_operator.go:290] sync {"update" "olm/packageserver"} failed: error updating ClusterServiceVersion status: Operation cannot be fulfilled on clusterserviceversions.operators.coreos.com "packageserver": the object has been modified; please apply your changes to the latest version and try again time="2022-05-11T16:03:17Z" level=info msg="install strategy successful" csv=packageserver id=DRlfL namespace=olm phase=Installing strategy=deployment I0511 16:03:17.350530 1 event.go:285] Event(v1.ObjectReference{Kind:"ClusterServiceVersion", Namespace:"olm", Name:"packageserver", UID:"7ad0ebf6-e82b-467f-81a0-7d5a6905284d", APIVersion:"operators.coreos.com/v1alpha1", ResourceVersion:"7028", FieldPath:""}): type: 'Normal' reason: 'InstallWaiting' apiServices not installed time="2022-05-11T16:03:17Z" level=info msg="install strategy successful" csv=packageserver id=UTygP namespace=olm phase=Installing strategy=deployment I0511 16:03:17.392989 1 event.go:285] Event(v1.ObjectReference{Kind:"ClusterServiceVersion", Namespace:"olm", Name:"packageserver", UID:"7ad0ebf6-e82b-467f-81a0-7d5a6905284d", APIVersion:"operators.coreos.com/v1alpha1", ResourceVersion:"7028", FieldPath:""}): type: 'Normal' reason: 'InstallWaiting' apiServices not installed time="2022-05-11T16:03:17Z" level=info msg="error updating ClusterServiceVersion status: Operation cannot be fulfilled on clusterserviceversions.operators.coreos.com \"packageserver\": the object has been modified; please apply your changes to the latest version and try again" csv=packageserver id=lWnlp namespace=olm phase=Installing E0511 16:03:17.405466 1 queueinformer_operator.go:290] sync {"update" "olm/packageserver"} failed: error updating ClusterServiceVersion status: Operation cannot be fulfilled on clusterserviceversions.operators.coreos.com "packageserver": the object has been modified; please apply your changes to the latest version and try again time="2022-05-11T16:03:17Z" level=info msg="install strategy successful" csv=packageserver id=zZDZ5 namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:17Z" level=info msg="install strategy successful" csv=packageserver id=/mvym namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:17Z" level=info msg="install strategy successful" csv=packageserver id=4dyR2 namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:17Z" level=info msg="install strategy successful" csv=packageserver id=SYqXO namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:17Z" level=info msg="install strategy successful" csv=packageserver id=CSIJE namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:17Z" level=info msg="install strategy successful" csv=packageserver id=dGy7t namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:18Z" level=info msg="install strategy successful" csv=packageserver id=i2PMy namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:18Z" level=info msg="install strategy successful" csv=packageserver id=HnnOk namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:18Z" level=info msg="install strategy successful" csv=packageserver id=ZpEoA namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:18Z" level=info msg="install strategy successful" csv=packageserver id=jVr7c namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:18Z" level=info msg="install strategy successful" csv=packageserver id=zoTyz namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:18Z" level=info msg="install strategy successful" csv=packageserver id=cNszu namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:18Z" level=info msg="install strategy successful" csv=packageserver id=3V+Ti namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:18Z" level=info msg="install strategy successful" csv=packageserver id=hJYkw namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:18Z" level=info msg="install strategy successful" csv=packageserver id=40p3o namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:18Z" level=info msg="install strategy successful" csv=packageserver id=hUZjD namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:19Z" level=info msg="install strategy successful" csv=packageserver id=WtjZg namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:19Z" level=info msg="install strategy successful" csv=packageserver id=H+NdX namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:19Z" level=info msg="install strategy successful" csv=packageserver id=p2qaH namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:19Z" level=info msg="install strategy successful" csv=packageserver id=rRFq3 namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:19Z" level=info msg="install strategy successful" csv=packageserver id=tApKH namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:19Z" level=info msg="install strategy successful" csv=packageserver id=BZwR2 namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:19Z" level=info msg="install strategy successful" csv=packageserver id=5Ghe6 namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:19Z" level=info msg="install strategy successful" csv=packageserver id=18VtQ namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:19Z" level=info msg="install strategy successful" csv=packageserver id=nEKdg namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:19Z" level=info msg="install strategy successful" csv=packageserver id=G3gBz namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:20Z" level=info msg="install strategy successful" csv=packageserver id=FndGI namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:20Z" level=info msg="install strategy successful" csv=packageserver id=K0Z1H namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:20Z" level=info msg="install strategy successful" csv=packageserver id=KQy3m namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:20Z" level=info msg="install strategy successful" csv=packageserver id=Yub+R namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:20Z" level=info msg="install strategy successful" csv=packageserver id=dj94a namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:20Z" level=info msg="install strategy successful" csv=packageserver id=pe1PK namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:20Z" level=info msg="install strategy successful" csv=packageserver id=A9wWl namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:20Z" level=info msg="install strategy successful" csv=packageserver id=i+pr7 namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:20Z" level=info msg="install strategy successful" csv=packageserver id=bS6Yc namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:20Z" level=info msg="install strategy successful" csv=packageserver id=+tpdk namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:21Z" level=info msg="install strategy successful" csv=packageserver id=R8knr namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:21Z" level=info msg="install strategy successful" csv=packageserver id=wWk2U namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:21Z" level=info msg="install strategy successful" csv=packageserver id=SGcUq namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:21Z" level=info msg="install strategy successful" csv=packageserver id=RWQlH namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:21Z" level=info msg="install strategy successful" csv=packageserver id=WbrFU namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:21Z" level=info msg="install strategy successful" csv=packageserver id=jEgkt namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:21Z" level=info msg="install strategy successful" csv=packageserver id=y117y namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:21Z" level=info msg="install strategy successful" csv=packageserver id=i47r7 namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:21Z" level=info msg="install strategy successful" csv=packageserver id=Ig/xx namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:21Z" level=info msg="install strategy successful" csv=packageserver id=8pBgR namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:22Z" level=info msg="install strategy successful" csv=packageserver id=GJypR namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:22Z" level=info msg="install strategy successful" csv=packageserver id=vg5h3 namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:22Z" level=info msg="install strategy successful" csv=packageserver id=Fir3T namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:22Z" level=info msg="install strategy successful" csv=packageserver id=5ZXoz namespace=olm phase=Installing strategy=deployment I0511 16:03:22.410787 1 event.go:285] Event(v1.ObjectReference{Kind:"ClusterServiceVersion", Namespace:"olm", Name:"packageserver", UID:"7ad0ebf6-e82b-467f-81a0-7d5a6905284d", APIVersion:"operators.coreos.com/v1alpha1", ResourceVersion:"7044", FieldPath:""}): type: 'Normal' reason: 'InstallSucceeded' install strategy completed with no errors time="2022-05-11T16:03:22Z" level=info msg="install strategy successful" csv=packageserver id=UBUMy namespace=olm phase=Installing strategy=deployment I0511 16:03:22.609916 1 event.go:285] Event(v1.ObjectReference{Kind:"ClusterServiceVersion", Namespace:"olm", Name:"packageserver", UID:"7ad0ebf6-e82b-467f-81a0-7d5a6905284d", APIVersion:"operators.coreos.com/v1alpha1", ResourceVersion:"7044", FieldPath:""}): type: 'Normal' reason: 'InstallSucceeded' install strategy completed with no errors time="2022-05-11T16:03:22Z" level=info msg="error updating ClusterServiceVersion status: Operation cannot be fulfilled on clusterserviceversions.operators.coreos.com \"packageserver\": the object has been modified; please apply your changes to the latest version and try again" csv=packageserver id=lq0fV namespace=olm phase=Installing E0511 16:03:22.620607 1 queueinformer_operator.go:290] sync {"update" "olm/packageserver"} failed: error updating ClusterServiceVersion status: Operation cannot be fulfilled on clusterserviceversions.operators.coreos.com "packageserver": the object has been modified; please apply your changes to the latest version and try again time="2022-05-11T16:03:22Z" level=warning msg="could not retrieve Role extension-apiserver-authentication-reader" apiservice=v1.packages.operators.coreos.com csv=packageserver namespace=olm I0511 16:03:22.625939 1 event.go:285] Event(v1.ObjectReference{Kind:"ClusterServiceVersion", Namespace:"olm", Name:"packageserver", UID:"7ad0ebf6-e82b-467f-81a0-7d5a6905284d", APIVersion:"operators.coreos.com/v1alpha1", ResourceVersion:"7054", FieldPath:""}): type: 'Warning' reason: 'APIServiceResourceIssue' role.rbac.authorization.k8s.io "extension-apiserver-authentication-reader" not found time="2022-05-11T16:03:22Z" level=warning msg="could not retrieve Role extension-apiserver-authentication-reader" apiservice=v1.packages.operators.coreos.com csv=packageserver namespace=olm I0511 16:03:22.650925 1 event.go:285] Event(v1.ObjectReference{Kind:"ClusterServiceVersion", Namespace:"olm", Name:"packageserver", UID:"7ad0ebf6-e82b-467f-81a0-7d5a6905284d", APIVersion:"operators.coreos.com/v1alpha1", ResourceVersion:"7054", FieldPath:""}): type: 'Warning' reason: 'APIServiceResourceIssue' role.rbac.authorization.k8s.io "extension-apiserver-authentication-reader" not found time="2022-05-11T16:03:22Z" level=info msg="error updating ClusterServiceVersion status: Operation cannot be fulfilled on clusterserviceversions.operators.coreos.com \"packageserver\": the object has been modified; please apply your changes to the latest version and try again" csv=packageserver id=Yu57k namespace=olm phase=Succeeded E0511 16:03:22.660863 1 queueinformer_operator.go:290] sync {"update" "olm/packageserver"} failed: error updating ClusterServiceVersion status: Operation cannot be fulfilled on clusterserviceversions.operators.coreos.com "packageserver": the object has been modified; please apply your changes to the latest version and try again time="2022-05-11T16:03:22Z" level=warning msg="could not retrieve Role extension-apiserver-authentication-reader" apiservice=v1.packages.operators.coreos.com csv=packageserver namespace=olm I0511 16:03:22.809390 1 event.go:285] Event(v1.ObjectReference{Kind:"ClusterServiceVersion", Namespace:"olm", Name:"packageserver", UID:"7ad0ebf6-e82b-467f-81a0-7d5a6905284d", APIVersion:"operators.coreos.com/v1alpha1", ResourceVersion:"7058", FieldPath:""}): type: 'Normal' reason: 'APIServiceResourcesNeedReinstall' role.rbac.authorization.k8s.io "extension-apiserver-authentication-reader" not found time="2022-05-11T16:03:23Z" level=warning msg="could not retrieve Role extension-apiserver-authentication-reader" apiservice=v1.packages.operators.coreos.com csv=packageserver namespace=olm I0511 16:03:23.010718 1 event.go:285] Event(v1.ObjectReference{Kind:"ClusterServiceVersion", Namespace:"olm", Name:"packageserver", UID:"7ad0ebf6-e82b-467f-81a0-7d5a6905284d", APIVersion:"operators.coreos.com/v1alpha1", ResourceVersion:"7058", FieldPath:""}): type: 'Normal' reason: 'APIServiceResourcesNeedReinstall' role.rbac.authorization.k8s.io "extension-apiserver-authentication-reader" not found time="2022-05-11T16:03:23Z" level=info msg="error updating ClusterServiceVersion status: Operation cannot be fulfilled on clusterserviceversions.operators.coreos.com \"packageserver\": the object has been modified; please apply your changes to the latest version and try again" csv=packageserver id=xF8Wp namespace=olm phase=Failed E0511 16:03:23.021325 1 queueinformer_operator.go:290] sync {"update" "olm/packageserver"} failed: error updating ClusterServiceVersion status: Operation cannot be fulfilled on clusterserviceversions.operators.coreos.com "packageserver": the object has been modified; please apply your changes to the latest version and try again time="2022-05-11T16:03:23Z" level=info msg="scheduling ClusterServiceVersion for install" csv=packageserver id=EUeCW namespace=olm phase=Pending I0511 16:03:23.108629 1 event.go:285] Event(v1.ObjectReference{Kind:"ClusterServiceVersion", Namespace:"olm", Name:"packageserver", UID:"7ad0ebf6-e82b-467f-81a0-7d5a6905284d", APIVersion:"operators.coreos.com/v1alpha1", ResourceVersion:"7062", FieldPath:""}): type: 'Normal' reason: 'AllRequirementsMet' all requirements found, attempting install time="2022-05-11T16:03:23Z" level=info msg="scheduling ClusterServiceVersion for install" csv=packageserver id=y76PE namespace=olm phase=Pending I0511 16:03:23.209470 1 event.go:285] Event(v1.ObjectReference{Kind:"ClusterServiceVersion", Namespace:"olm", Name:"packageserver", UID:"7ad0ebf6-e82b-467f-81a0-7d5a6905284d", APIVersion:"operators.coreos.com/v1alpha1", ResourceVersion:"7062", FieldPath:""}): type: 'Normal' reason: 'AllRequirementsMet' all requirements found, attempting install time="2022-05-11T16:03:23Z" level=info msg="error updating ClusterServiceVersion status: Operation cannot be fulfilled on clusterserviceversions.operators.coreos.com \"packageserver\": the object has been modified; please apply your changes to the latest version and try again" csv=packageserver id=3UKVZ namespace=olm phase=Pending E0511 16:03:23.220500 1 queueinformer_operator.go:290] sync {"update" "olm/packageserver"} failed: error updating ClusterServiceVersion status: Operation cannot be fulfilled on clusterserviceversions.operators.coreos.com "packageserver": the object has been modified; please apply your changes to the latest version and try again time="2022-05-11T16:03:23Z" level=warning msg="reusing existing cert packageserver-service-cert" I0511 16:03:23.403307 1 event.go:285] Event(v1.ObjectReference{Kind:"ClusterServiceVersion", Namespace:"olm", Name:"packageserver", UID:"7ad0ebf6-e82b-467f-81a0-7d5a6905284d", APIVersion:"operators.coreos.com/v1alpha1", ResourceVersion:"7065", FieldPath:""}): type: 'Normal' reason: 'InstallSucceeded' waiting for install components to report healthy time="2022-05-11T16:03:23Z" level=warning msg="reusing existing cert packageserver-service-cert" I0511 16:03:23.588717 1 event.go:285] Event(v1.ObjectReference{Kind:"ClusterServiceVersion", Namespace:"olm", Name:"packageserver", UID:"7ad0ebf6-e82b-467f-81a0-7d5a6905284d", APIVersion:"operators.coreos.com/v1alpha1", ResourceVersion:"7065", FieldPath:""}): type: 'Normal' reason: 'InstallSucceeded' waiting for install components to report healthy time="2022-05-11T16:03:23Z" level=info msg="error updating ClusterServiceVersion status: Operation cannot be fulfilled on clusterserviceversions.operators.coreos.com \"packageserver\": the object has been modified; please apply your changes to the latest version and try again" csv=packageserver id=WAPLp namespace=olm phase=InstallReady E0511 16:03:23.599836 1 queueinformer_operator.go:290] sync {"update" "olm/packageserver"} failed: error updating ClusterServiceVersion status: Operation cannot be fulfilled on clusterserviceversions.operators.coreos.com "packageserver": the object has been modified; please apply your changes to the latest version and try again time="2022-05-11T16:03:23Z" level=info msg="install strategy successful" csv=packageserver id=dBClH namespace=olm phase=Installing strategy=deployment I0511 16:03:23.620212 1 event.go:285] Event(v1.ObjectReference{Kind:"ClusterServiceVersion", Namespace:"olm", Name:"packageserver", UID:"7ad0ebf6-e82b-467f-81a0-7d5a6905284d", APIVersion:"operators.coreos.com/v1alpha1", ResourceVersion:"7079", FieldPath:""}): type: 'Normal' reason: 'InstallWaiting' apiServices not installed time="2022-05-11T16:03:23Z" level=info msg="install strategy successful" csv=packageserver id=8qY6O namespace=olm phase=Installing strategy=deployment I0511 16:03:23.693842 1 event.go:285] Event(v1.ObjectReference{Kind:"ClusterServiceVersion", Namespace:"olm", Name:"packageserver", UID:"7ad0ebf6-e82b-467f-81a0-7d5a6905284d", APIVersion:"operators.coreos.com/v1alpha1", ResourceVersion:"7079", FieldPath:""}): type: 'Normal' reason: 'InstallWaiting' apiServices not installed time="2022-05-11T16:03:23Z" level=info msg="error updating ClusterServiceVersion status: Operation cannot be fulfilled on clusterserviceversions.operators.coreos.com \"packageserver\": the object has been modified; please apply your changes to the latest version and try again" csv=packageserver id=rnEbl namespace=olm phase=Installing E0511 16:03:23.705160 1 queueinformer_operator.go:290] sync {"update" "olm/packageserver"} failed: error updating ClusterServiceVersion status: Operation cannot be fulfilled on clusterserviceversions.operators.coreos.com "packageserver": the object has been modified; please apply your changes to the latest version and try again time="2022-05-11T16:03:23Z" level=info msg="install strategy successful" csv=packageserver id=MObLA namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:23Z" level=info msg="install strategy successful" csv=packageserver id=JttOu namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:23Z" level=info msg="install strategy successful" csv=packageserver id=sWhpc namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:23Z" level=info msg="install strategy successful" csv=packageserver id=JJnCk namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:23Z" level=info msg="install strategy successful" csv=packageserver id=53ixg namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:24Z" level=info msg="install strategy successful" csv=packageserver id=XhlYW namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:24Z" level=info msg="install strategy successful" csv=packageserver id=7LedG namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:24Z" level=info msg="install strategy successful" csv=packageserver id=Sm4TI namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:24Z" level=info msg="install strategy successful" csv=packageserver id=z4Kft namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:24Z" level=info msg="install strategy successful" csv=packageserver id=TAT9c namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:24Z" level=info msg="install strategy successful" csv=packageserver id=2LxXt namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:24Z" level=info msg="install strategy successful" csv=packageserver id=uL2Es namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:24Z" level=info msg="install strategy successful" csv=packageserver id=M5Gk1 namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:24Z" level=info msg="install strategy successful" csv=packageserver id=sRax3 namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:24Z" level=info msg="install strategy successful" csv=packageserver id=plsJI namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:25Z" level=info msg="install strategy successful" csv=packageserver id=RiRuz namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:25Z" level=info msg="install strategy successful" csv=packageserver id=4wl9z namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:25Z" level=info msg="install strategy successful" csv=packageserver id=XwJ1L namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:25Z" level=info msg="install strategy successful" csv=packageserver id=IWPr3 namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:25Z" level=info msg="install strategy successful" csv=packageserver id=8qbxB namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:25Z" level=info msg="install strategy successful" csv=packageserver id=hKG3i namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:25Z" level=info msg="install strategy successful" csv=packageserver id=jlvRs namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:25Z" level=info msg="install strategy successful" csv=packageserver id=ei+aZ namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:25Z" level=info msg="install strategy successful" csv=packageserver id=/yIDw namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:25Z" level=info msg="install strategy successful" csv=packageserver id=Dp29r namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:26Z" level=info msg="install strategy successful" csv=packageserver id=nQaWI namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:26Z" level=info msg="install strategy successful" csv=packageserver id=D3Jot namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:26Z" level=info msg="install strategy successful" csv=packageserver id=6Azlw namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:26Z" level=info msg="install strategy successful" csv=packageserver id=NYGyl namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:26Z" level=info msg="install strategy successful" csv=packageserver id=qbFFk namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:26Z" level=info msg="install strategy successful" csv=packageserver id=TEHAR namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:26Z" level=info msg="install strategy successful" csv=packageserver id=ZwEAS namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:26Z" level=info msg="install strategy successful" csv=packageserver id=K1SzM namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:26Z" level=info msg="install strategy successful" csv=packageserver id=Qur+/ namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:26Z" level=info msg="install strategy successful" csv=packageserver id=KJ7Od namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:27Z" level=info msg="install strategy successful" csv=packageserver id=KBuUA namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:27Z" level=info msg="install strategy successful" csv=packageserver id=NpjYx namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:27Z" level=info msg="install strategy successful" csv=packageserver id=Eq0GM namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:27Z" level=info msg="install strategy successful" csv=packageserver id=18RKx namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:27Z" level=info msg="install strategy successful" csv=packageserver id=Ehbyz namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:27Z" level=info msg="install strategy successful" csv=packageserver id=U2EK2 namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:27Z" level=info msg="install strategy successful" csv=packageserver id=TfFXK namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:27Z" level=info msg="install strategy successful" csv=packageserver id=UNBGJ namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:27Z" level=info msg="install strategy successful" csv=packageserver id=Z4Vn9 namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:27Z" level=info msg="install strategy successful" csv=packageserver id=m6lUC namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:28Z" level=info msg="install strategy successful" csv=packageserver id=e+6D/ namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:28Z" level=info msg="install strategy successful" csv=packageserver id=d5nkR namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:28Z" level=info msg="install strategy successful" csv=packageserver id=UyLRr namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:28Z" level=info msg="install strategy successful" csv=packageserver id=1yRb6 namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:28Z" level=info msg="install strategy successful" csv=packageserver id=/+UGr namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:28Z" level=info msg="install strategy successful" csv=packageserver id=3L5kw namespace=olm phase=Installing strategy=deployment I0511 16:03:28.560430 1 event.go:285] Event(v1.ObjectReference{Kind:"ClusterServiceVersion", Namespace:"olm", Name:"packageserver", UID:"7ad0ebf6-e82b-467f-81a0-7d5a6905284d", APIVersion:"operators.coreos.com/v1alpha1", ResourceVersion:"7091", FieldPath:""}): type: 'Normal' reason: 'InstallSucceeded' install strategy completed with no errors time="2022-05-11T16:03:28Z" level=warning msg="could not retrieve Role extension-apiserver-authentication-reader" apiservice=v1.packages.operators.coreos.com csv=packageserver namespace=olm I0511 16:03:28.586485 1 event.go:285] Event(v1.ObjectReference{Kind:"ClusterServiceVersion", Namespace:"olm", Name:"packageserver", UID:"7ad0ebf6-e82b-467f-81a0-7d5a6905284d", APIVersion:"operators.coreos.com/v1alpha1", ResourceVersion:"7103", FieldPath:""}): type: 'Warning' reason: 'APIServiceResourceIssue' role.rbac.authorization.k8s.io "extension-apiserver-authentication-reader" not found time="2022-05-11T16:03:28Z" level=warning msg="could not retrieve Role extension-apiserver-authentication-reader" apiservice=v1.packages.operators.coreos.com csv=packageserver namespace=olm I0511 16:03:28.659879 1 event.go:285] Event(v1.ObjectReference{Kind:"ClusterServiceVersion", Namespace:"olm", Name:"packageserver", UID:"7ad0ebf6-e82b-467f-81a0-7d5a6905284d", APIVersion:"operators.coreos.com/v1alpha1", ResourceVersion:"7104", FieldPath:""}): type: 'Normal' reason: 'APIServiceResourcesNeedReinstall' role.rbac.authorization.k8s.io "extension-apiserver-authentication-reader" not found time="2022-05-11T16:03:28Z" level=info msg="scheduling ClusterServiceVersion for install" csv=packageserver id=PBlBY namespace=olm phase=Pending I0511 16:03:28.760494 1 event.go:285] Event(v1.ObjectReference{Kind:"ClusterServiceVersion", Namespace:"olm", Name:"packageserver", UID:"7ad0ebf6-e82b-467f-81a0-7d5a6905284d", APIVersion:"operators.coreos.com/v1alpha1", ResourceVersion:"7107", FieldPath:""}): type: 'Normal' reason: 'AllRequirementsMet' all requirements found, attempting install time="2022-05-11T16:03:28Z" level=warning msg="reusing existing cert packageserver-service-cert" I0511 16:03:28.933231 1 event.go:285] Event(v1.ObjectReference{Kind:"ClusterServiceVersion", Namespace:"olm", Name:"packageserver", UID:"7ad0ebf6-e82b-467f-81a0-7d5a6905284d", APIVersion:"operators.coreos.com/v1alpha1", ResourceVersion:"7109", FieldPath:""}): type: 'Normal' reason: 'InstallSucceeded' waiting for install components to report healthy time="2022-05-11T16:03:29Z" level=warning msg="reusing existing cert packageserver-service-cert" I0511 16:03:29.079001 1 event.go:285] Event(v1.ObjectReference{Kind:"ClusterServiceVersion", Namespace:"olm", Name:"packageserver", UID:"7ad0ebf6-e82b-467f-81a0-7d5a6905284d", APIVersion:"operators.coreos.com/v1alpha1", ResourceVersion:"7109", FieldPath:""}): type: 'Normal' reason: 'InstallSucceeded' waiting for install components to report healthy time="2022-05-11T16:03:29Z" level=info msg="error updating ClusterServiceVersion status: Operation cannot be fulfilled on clusterserviceversions.operators.coreos.com \"packageserver\": the object has been modified; please apply your changes to the latest version and try again" csv=packageserver id=Mj0Dl namespace=olm phase=InstallReady E0511 16:03:29.088310 1 queueinformer_operator.go:290] sync {"update" "olm/packageserver"} failed: error updating ClusterServiceVersion status: Operation cannot be fulfilled on clusterserviceversions.operators.coreos.com "packageserver": the object has been modified; please apply your changes to the latest version and try again time="2022-05-11T16:03:29Z" level=info msg="install strategy successful" csv=packageserver id=T8WR1 namespace=olm phase=Installing strategy=deployment I0511 16:03:29.104570 1 event.go:285] Event(v1.ObjectReference{Kind:"ClusterServiceVersion", Namespace:"olm", Name:"packageserver", UID:"7ad0ebf6-e82b-467f-81a0-7d5a6905284d", APIVersion:"operators.coreos.com/v1alpha1", ResourceVersion:"7123", FieldPath:""}): type: 'Normal' reason: 'InstallWaiting' apiServices not installed time="2022-05-11T16:03:29Z" level=info msg="install strategy successful" csv=packageserver id=uug9V namespace=olm phase=Installing strategy=deployment I0511 16:03:29.140030 1 event.go:285] Event(v1.ObjectReference{Kind:"ClusterServiceVersion", Namespace:"olm", Name:"packageserver", UID:"7ad0ebf6-e82b-467f-81a0-7d5a6905284d", APIVersion:"operators.coreos.com/v1alpha1", ResourceVersion:"7123", FieldPath:""}): type: 'Normal' reason: 'InstallWaiting' apiServices not installed time="2022-05-11T16:03:29Z" level=info msg="error updating ClusterServiceVersion status: Operation cannot be fulfilled on clusterserviceversions.operators.coreos.com \"packageserver\": the object has been modified; please apply your changes to the latest version and try again" csv=packageserver id=cZqvE namespace=olm phase=Installing E0511 16:03:29.150231 1 queueinformer_operator.go:290] sync {"update" "olm/packageserver"} failed: error updating ClusterServiceVersion status: Operation cannot be fulfilled on clusterserviceversions.operators.coreos.com "packageserver": the object has been modified; please apply your changes to the latest version and try again time="2022-05-11T16:03:29Z" level=info msg="install strategy successful" csv=packageserver id=HmV2m namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:29Z" level=info msg="install strategy successful" csv=packageserver id=j8Pr1 namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:29Z" level=info msg="install strategy successful" csv=packageserver id=5TMuA namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:29Z" level=info msg="install strategy successful" csv=packageserver id=3yRAs namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:29Z" level=info msg="install strategy successful" csv=packageserver id=Jwxk9 namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:29Z" level=info msg="install strategy successful" csv=packageserver id=2Xmod namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:29Z" level=info msg="install strategy successful" csv=packageserver id=lAm8u namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:29Z" level=info msg="install strategy successful" csv=packageserver id=ClVoG namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:29Z" level=info msg="install strategy successful" csv=packageserver id=6KHEq namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:29Z" level=info msg="install strategy successful" csv=packageserver id=NRCNT namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:30Z" level=info msg="install strategy successful" csv=packageserver id=bxooH namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:30Z" level=info msg="install strategy successful" csv=packageserver id=KSLJo namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:30Z" level=info msg="install strategy successful" csv=packageserver id=ATGPr namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:30Z" level=info msg="install strategy successful" csv=packageserver id=9PmoF namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:30Z" level=info msg="install strategy successful" csv=packageserver id=+T0Tm namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:30Z" level=info msg="install strategy successful" csv=packageserver id=CU95O namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:30Z" level=info msg="install strategy successful" csv=packageserver id=8+NPz namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:30Z" level=info msg="install strategy successful" csv=packageserver id=K5YpH namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:30Z" level=info msg="install strategy successful" csv=packageserver id=FT+nm namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:30Z" level=info msg="install strategy successful" csv=packageserver id=ajSHr namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:31Z" level=info msg="install strategy successful" csv=packageserver id=FV2QA namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:31Z" level=info msg="install strategy successful" csv=packageserver id=UsUKf namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:31Z" level=info msg="install strategy successful" csv=packageserver id=mN+u1 namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:31Z" level=info msg="install strategy successful" csv=packageserver id=LN89I namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:31Z" level=info msg="install strategy successful" csv=packageserver id=XqeeO namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:31Z" level=info msg="install strategy successful" csv=packageserver id=J1nCa namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:31Z" level=info msg="install strategy successful" csv=packageserver id=DKjKT namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:31Z" level=info msg="install strategy successful" csv=packageserver id=1gtmq namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:31Z" level=info msg="install strategy successful" csv=packageserver id=GiXlo namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:31Z" level=info msg="install strategy successful" csv=packageserver id=mvpUW namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:32Z" level=info msg="install strategy successful" csv=packageserver id=tgpVH namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:32Z" level=info msg="install strategy successful" csv=packageserver id=qu4DQ namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:32Z" level=info msg="install strategy successful" csv=packageserver id=2RLnr namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:32Z" level=info msg="install strategy successful" csv=packageserver id=/2srx namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:32Z" level=info msg="install strategy successful" csv=packageserver id=KZScV namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:32Z" level=info msg="install strategy successful" csv=packageserver id=sEVkL namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:32Z" level=info msg="install strategy successful" csv=packageserver id=3FycZ namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:32Z" level=info msg="install strategy successful" csv=packageserver id=sn3qv namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:32Z" level=info msg="install strategy successful" csv=packageserver id=2sq3S namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:32Z" level=info msg="install strategy successful" csv=packageserver id=RFM1M namespace=olm phase=Installing strategy=deployment time="2022-05-11T16:03:33Z" level=info msg="install strategy successful" csv=packageserver id=AE5Sg namespace=olm phase=Installing strategy=deployment ```

Pod catalog-operator-7bfdc86d78-clhfq

``` time="2022-05-11T15:48:57Z" level=info msg="log level info" W0511 15:48:57.788308 1 client_config.go:617] Neither --kubeconfig nor --master was specified. Using the inClusterConfig. This might not work. time="2022-05-11T15:48:57Z" level=info msg="Using in-cluster kube client config" time="2022-05-11T15:48:57Z" level=info msg="Using in-cluster kube client config" W0511 15:48:57.789142 1 client_config.go:617] Neither --kubeconfig nor --master was specified. Using the inClusterConfig. This might not work. W0511 15:48:57.802904 1 client_config.go:617] Neither --kubeconfig nor --master was specified. Using the inClusterConfig. This might not work. time="2022-05-11T15:48:57Z" level=info msg="connection established. cluster-version: v1.23.6-2+2a84a218e3cd52" time="2022-05-11T15:48:57Z" level=info msg="operator ready" time="2022-05-11T15:48:57Z" level=info msg="starting informers..." time="2022-05-11T15:48:57Z" level=info msg="informers started" time="2022-05-11T15:48:57Z" level=info msg="waiting for caches to sync..." time="2022-05-11T15:48:58Z" level=info msg="starting workers..." time="2022-05-11T15:48:58Z" level=info msg="connection established. cluster-version: v1.23.6-2+2a84a218e3cd52" time="2022-05-11T15:48:58Z" level=info msg="operator ready" time="2022-05-11T15:48:58Z" level=info msg="starting informers..." time="2022-05-11T15:48:58Z" level=info msg="informers started" time="2022-05-11T15:48:58Z" level=info msg="waiting for caches to sync..." time="2022-05-11T15:48:58Z" level=info msg="starting workers..." time="2022-05-11T15:48:58Z" level=error msg="UpdateStatus - error while setting CatalogSource status" error="Operation cannot be fulfilled on catalogsources.operators.coreos.com \"operatorhubio-catalog\": the object has been modified; please apply your changes to the latest version and try again" id=b5//C source=operatorhubio-catalog E0511 15:48:58.626519 1 queueinformer_operator.go:290] sync {"update" "olm/operatorhubio-catalog"} failed: Operation cannot be fulfilled on catalogsources.operators.coreos.com "operatorhubio-catalog": the object has been modified; please apply your changes to the latest version and try again time="2022-05-11T15:48:59Z" level=error msg="UpdateStatus - error while setting CatalogSource status" error="Operation cannot be fulfilled on catalogsources.operators.coreos.com \"operatorhubio-catalog\": the object has been modified; please apply your changes to the latest version and try again" id=upv/1 source=operatorhubio-catalog E0511 15:48:59.019333 1 queueinformer_operator.go:290] sync {"update" "olm/operatorhubio-catalog"} failed: Operation cannot be fulfilled on catalogsources.operators.coreos.com "operatorhubio-catalog": the object has been modified; please apply your changes to the latest version and try again time="2022-05-11T15:48:59Z" level=error msg="UpdateStatus - error while setting CatalogSource status" error="Operation cannot be fulfilled on catalogsources.operators.coreos.com \"operatorhubio-catalog\": the object has been modified; please apply your changes to the latest version and try again" id=y/hxP source=operatorhubio-catalog E0511 15:48:59.414791 1 queueinformer_operator.go:290] sync {"update" "olm/operatorhubio-catalog"} failed: Operation cannot be fulfilled on catalogsources.operators.coreos.com "operatorhubio-catalog": the object has been modified; please apply your changes to the latest version and try again time="2022-05-11T15:49:00Z" level=error msg="UpdateStatus - error while setting CatalogSource status" error="Operation cannot be fulfilled on catalogsources.operators.coreos.com \"operatorhubio-catalog\": the object has been modified; please apply your changes to the latest version and try again" id=3gN0B source=operatorhubio-catalog E0511 15:49:00.216623 1 queueinformer_operator.go:290] sync {"update" "olm/operatorhubio-catalog"} failed: Operation cannot be fulfilled on catalogsources.operators.coreos.com "operatorhubio-catalog": the object has been modified; please apply your changes to the latest version and try again time="2022-05-11T15:49:01Z" level=error msg="UpdateStatus - error while setting CatalogSource status" error="Operation cannot be fulfilled on catalogsources.operators.coreos.com \"operatorhubio-catalog\": the object has been modified; please apply your changes to the latest version and try again" id=mY6+q source=operatorhubio-catalog E0511 15:49:01.372763 1 queueinformer_operator.go:290] sync {"update" "olm/operatorhubio-catalog"} failed: Operation cannot be fulfilled on catalogsources.operators.coreos.com "operatorhubio-catalog": the object has been modified; please apply your changes to the latest version and try again time="2022-05-11T15:49:04Z" level=error msg="UpdateStatus - error while setting CatalogSource status" error="Operation cannot be fulfilled on catalogsources.operators.coreos.com \"operatorhubio-catalog\": the object has been modified; please apply your changes to the latest version and try again" id=JWfBi source=operatorhubio-catalog E0511 15:49:04.319020 1 queueinformer_operator.go:290] sync {"update" "olm/operatorhubio-catalog"} failed: Operation cannot be fulfilled on catalogsources.operators.coreos.com "operatorhubio-catalog": the object has been modified; please apply your changes to the latest version and try again time="2022-05-11T15:49:14Z" level=error msg="UpdateStatus - error while setting CatalogSource status" error="Operation cannot be fulfilled on catalogsources.operators.coreos.com \"operatorhubio-catalog\": the object has been modified; please apply your changes to the latest version and try again" id=A1byR source=operatorhubio-catalog E0511 15:49:14.774161 1 queueinformer_operator.go:290] sync {"update" "olm/operatorhubio-catalog"} failed: Operation cannot be fulfilled on catalogsources.operators.coreos.com "operatorhubio-catalog": the object has been modified; please apply your changes to the latest version and try again time="2022-05-11T15:49:23Z" level=error msg="UpdateStatus - error while setting CatalogSource status" error="Operation cannot be fulfilled on catalogsources.operators.coreos.com \"operatorhubio-catalog\": the object has been modified; please apply your changes to the latest version and try again" id=Pf5BN source=operatorhubio-catalog E0511 15:49:23.372395 1 queueinformer_operator.go:290] sync {"update" "olm/operatorhubio-catalog"} failed: Operation cannot be fulfilled on catalogsources.operators.coreos.com "operatorhubio-catalog": the object has been modified; please apply your changes to the latest version and try again time="2022-05-11T15:49:39Z" level=error msg="UpdateStatus - error while setting CatalogSource status" error="Operation cannot be fulfilled on catalogsources.operators.coreos.com \"operatorhubio-catalog\": the object has been modified; please apply your changes to the latest version and try again" id=EGOjm source=operatorhubio-catalog E0511 15:49:39.917898 1 queueinformer_operator.go:290] sync {"update" "olm/operatorhubio-catalog"} failed: Operation cannot be fulfilled on catalogsources.operators.coreos.com "operatorhubio-catalog": the object has been modified; please apply your changes to the latest version and try again time="2022-05-11T15:50:11Z" level=error msg="UpdateStatus - error while setting CatalogSource status" error="Operation cannot be fulfilled on catalogsources.operators.coreos.com \"operatorhubio-catalog\": the object has been modified; please apply your changes to the latest version and try again" id=nwGiO source=operatorhubio-catalog E0511 15:50:11.725143 1 queueinformer_operator.go:290] sync {"update" "olm/operatorhubio-catalog"} failed: Operation cannot be fulfilled on catalogsources.operators.coreos.com "operatorhubio-catalog": the object has been modified; please apply your changes to the latest version and try again time="2022-05-11T15:50:49Z" level=error msg="UpdateStatus - error while setting CatalogSource status" error="Operation cannot be fulfilled on catalogsources.operators.coreos.com \"operatorhubio-catalog\": the object has been modified; please apply your changes to the latest version and try again" id=xsbvg source=operatorhubio-catalog E0511 15:50:49.403481 1 queueinformer_operator.go:290] sync {"update" "olm/operatorhubio-catalog"} failed: Operation cannot be fulfilled on catalogsources.operators.coreos.com "operatorhubio-catalog": the object has been modified; please apply your changes to the latest version and try again time="2022-05-11T15:51:52Z" level=error msg="UpdateStatus - error while setting CatalogSource status" error="Operation cannot be fulfilled on catalogsources.operators.coreos.com \"operatorhubio-catalog\": the object has been modified; please apply your changes to the latest version and try again" id=F6P3m source=operatorhubio-catalog E0511 15:51:52.305285 1 queueinformer_operator.go:290] sync {"update" "olm/operatorhubio-catalog"} failed: Operation cannot be fulfilled on catalogsources.operators.coreos.com "operatorhubio-catalog": the object has been modified; please apply your changes to the latest version and try again time="2022-05-11T15:52:26Z" level=error msg="UpdateStatus - error while setting CatalogSource status" error="Operation cannot be fulfilled on catalogsources.operators.coreos.com \"operatorhubio-catalog\": the object has been modified; please apply your changes to the latest version and try again" id=PLdvD source=operatorhubio-catalog E0511 15:52:26.385752 1 queueinformer_operator.go:290] sync {"update" "olm/operatorhubio-catalog"} failed: Operation cannot be fulfilled on catalogsources.operators.coreos.com "operatorhubio-catalog": the object has been modified; please apply your changes to the latest version and try again time="2022-05-11T15:53:59Z" level=error msg="UpdateStatus - error while setting CatalogSource status" error="Operation cannot be fulfilled on catalogsources.operators.coreos.com \"operatorhubio-catalog\": the object has been modified; please apply your changes to the latest version and try again" id=ks75B source=operatorhubio-catalog E0511 15:53:59.253584 1 queueinformer_operator.go:290] sync {"update" "olm/operatorhubio-catalog"} failed: Operation cannot be fulfilled on catalogsources.operators.coreos.com "operatorhubio-catalog": the object has been modified; please apply your changes to the latest version and try again time="2022-05-11T15:55:53Z" level=error msg="UpdateStatus - error while setting CatalogSource status" error="Operation cannot be fulfilled on catalogsources.operators.coreos.com \"operatorhubio-catalog\": the object has been modified; please apply your changes to the latest version and try again" id=MHLmQ source=operatorhubio-catalog E0511 15:55:53.394994 1 queueinformer_operator.go:290] sync {"update" "olm/operatorhubio-catalog"} failed: Operation cannot be fulfilled on catalogsources.operators.coreos.com "operatorhubio-catalog": the object has been modified; please apply your changes to the latest version and try again time="2022-05-11T15:57:59Z" level=error msg="UpdateStatus - error while setting CatalogSource status" error="Operation cannot be fulfilled on catalogsources.operators.coreos.com \"operatorhubio-catalog\": the object has been modified; please apply your changes to the latest version and try again" id=zjx70 source=operatorhubio-catalog E0511 15:57:59.357746 1 queueinformer_operator.go:290] sync {"update" "olm/operatorhubio-catalog"} failed: Operation cannot be fulfilled on catalogsources.operators.coreos.com "operatorhubio-catalog": the object has been modified; please apply your changes to the latest version and try again time="2022-05-11T16:00:22Z" level=error msg="UpdateStatus - error while setting CatalogSource status" error="Operation cannot be fulfilled on catalogsources.operators.coreos.com \"operatorhubio-catalog\": the object has been modified; please apply your changes to the latest version and try again" id=ibOb6 source=operatorhubio-catalog E0511 16:00:22.825993 1 queueinformer_operator.go:290] sync {"update" "olm/operatorhubio-catalog"} failed: Operation cannot be fulfilled on catalogsources.operators.coreos.com "operatorhubio-catalog": the object has been modified; please apply your changes to the latest version and try again ```

Pod operaturhubio-catalog-6dffd

``` time="2022-05-11T15:49:13Z" level=info msg="serving registry" configs=/configs port=50051 ```

Pod packageserver-69f7948b9d-2q9k7

``` time="2022-05-11T15:49:03Z" level=info msg="Using in-cluster kube client config" time="2022-05-11T15:49:03Z" level=info msg="connection established. cluster-version: v1.23.6-2+2a84a218e3cd52" time="2022-05-11T15:49:03Z" level=info msg="operator ready" time="2022-05-11T15:49:03Z" level=info msg="starting informers..." time="2022-05-11T15:49:03Z" level=info msg="informers started" time="2022-05-11T15:49:03Z" level=info msg="waiting for caches to sync..." time="2022-05-11T15:49:03Z" level=info msg="starting workers..." time="2022-05-11T15:49:03Z" level=info msg="connecting to source" action="sync catalogsource" address="operatorhubio-catalog.olm.svc:50051" name=operatorhubio-catalog namespace=olm W0511 15:49:03.812337 1 clientconn.go:1331] [core] grpc: addrConn.createTransport failed to connect to {operatorhubio-catalog.olm.svc:50051 operatorhubio-catalog.olm.svc:50051 0 }. Err: connection error: desc = "transport: Error while dialing dial tcp: lookup operatorhubio-catalog.olm.svc on 127.0.0.53:53: read udp 127.0.0.1:40976->127.0.0.53:53: read: connection refused". Reconnecting... I0511 15:49:03.823472 1 requestheader_controller.go:169] Starting RequestHeaderAuthRequestController I0511 15:49:03.823493 1 shared_informer.go:240] Waiting for caches to sync for RequestHeaderAuthRequestController I0511 15:49:03.823565 1 configmap_cafile_content.go:201] "Starting controller" name="client-ca::kube-system::extension-apiserver-authentication::requestheader-client-ca-file" I0511 15:49:03.823597 1 shared_informer.go:240] Waiting for caches to sync for client-ca::kube-system::extension-apiserver-authentication::requestheader-client-ca-file I0511 15:49:03.823644 1 configmap_cafile_content.go:201] "Starting controller" name="client-ca::kube-system::extension-apiserver-authentication::client-ca-file" I0511 15:49:03.823650 1 shared_informer.go:240] Waiting for caches to sync for client-ca::kube-system::extension-apiserver-authentication::client-ca-file I0511 15:49:03.823728 1 secure_serving.go:266] Serving securely on [::]:5443 I0511 15:49:03.823782 1 dynamic_serving_content.go:131] "Starting controller" name="serving-cert::apiserver.local.config/certificates/apiserver.crt::apiserver.local.config/certificates/apiserver.key" I0511 15:49:03.823923 1 requestheader_controller.go:169] Starting RequestHeaderAuthRequestController I0511 15:49:03.823935 1 shared_informer.go:240] Waiting for caches to sync for RequestHeaderAuthRequestController I0511 15:49:03.824099 1 configmap_cafile_content.go:201] "Starting controller" name="client-ca::kube-system::extension-apiserver-authentication::client-ca-file" I0511 15:49:03.824118 1 shared_informer.go:240] Waiting for caches to sync for client-ca::kube-system::extension-apiserver-authentication::client-ca-file I0511 15:49:03.824144 1 configmap_cafile_content.go:201] "Starting controller" name="client-ca::kube-system::extension-apiserver-authentication::requestheader-client-ca-file" I0511 15:49:03.824150 1 shared_informer.go:240] Waiting for caches to sync for client-ca::kube-system::extension-apiserver-authentication::requestheader-client-ca-file I0511 15:49:03.824209 1 tlsconfig.go:240] "Starting DynamicServingCertificateController" I0511 15:49:03.924797 1 shared_informer.go:247] Caches are synced for client-ca::kube-system::extension-apiserver-authentication::client-ca-file I0511 15:49:03.924818 1 shared_informer.go:247] Caches are synced for client-ca::kube-system::extension-apiserver-authentication::client-ca-file I0511 15:49:03.924852 1 shared_informer.go:247] Caches are synced for client-ca::kube-system::extension-apiserver-authentication::requestheader-client-ca-file I0511 15:49:03.924805 1 shared_informer.go:247] Caches are synced for client-ca::kube-system::extension-apiserver-authentication::requestheader-client-ca-file I0511 15:49:03.925061 1 shared_informer.go:247] Caches are synced for RequestHeaderAuthRequestController I0511 15:49:03.925129 1 shared_informer.go:247] Caches are synced for RequestHeaderAuthRequestController time="2022-05-11T15:49:04Z" level=info msg="updating PackageManifest based on CatalogSource changes: {operatorhubio-catalog olm}" action="sync catalogsource" address="operatorhubio-catalog.olm.svc:50051" name=operatorhubio-catalog namespace=olm time="2022-05-11T15:49:04Z" level=warning msg="error getting stream" action="refresh cache" err="rpc error: code = Unavailable desc = connection error: desc = \"transport: Error while dialing dial tcp: lookup operatorhubio-catalog.olm.svc on 127.0.0.53:53: read udp 127.0.0.1:40976->127.0.0.53:53: read: connection refused\"" source="{operatorhubio-catalog olm}" W0511 15:49:04.813304 1 clientconn.go:1331] [core] grpc: addrConn.createTransport failed to connect to {operatorhubio-catalog.olm.svc:50051 operatorhubio-catalog.olm.svc:50051 0 }. Err: connection error: desc = "transport: Error while dialing dial tcp: lookup operatorhubio-catalog.olm.svc on 127.0.0.53:53: read udp 127.0.0.1:45968->127.0.0.53:53: read: connection refused". Reconnecting... W0511 15:49:06.610267 1 clientconn.go:1331] [core] grpc: addrConn.createTransport failed to connect to {operatorhubio-catalog.olm.svc:50051 operatorhubio-catalog.olm.svc:50051 0 }. Err: connection error: desc = "transport: Error while dialing dial tcp: lookup operatorhubio-catalog.olm.svc on 127.0.0.53:53: read udp 127.0.0.1:34378->127.0.0.53:53: read: connection refused". Reconnecting... time="2022-05-11T15:49:08Z" level=info msg="updating PackageManifest based on CatalogSource changes: {operatorhubio-catalog olm}" action="sync catalogsource" address="operatorhubio-catalog.olm.svc:50051" name=operatorhubio-catalog namespace=olm time="2022-05-11T15:49:08Z" level=warning msg="error getting stream" action="refresh cache" err="rpc error: code = Unavailable desc = connection error: desc = \"transport: Error while dialing dial tcp: lookup operatorhubio-catalog.olm.svc on 127.0.0.53:53: read udp 127.0.0.1:34378->127.0.0.53:53: read: connection refused\"" source="{operatorhubio-catalog olm}" time="2022-05-11T15:49:08Z" level=info msg="updating PackageManifest based on CatalogSource changes: {operatorhubio-catalog olm}" action="sync catalogsource" address="operatorhubio-catalog.olm.svc:50051" name=operatorhubio-catalog namespace=olm time="2022-05-11T15:49:08Z" level=warning msg="error getting stream" action="refresh cache" err="rpc error: code = Unavailable desc = connection error: desc = \"transport: Error while dialing dial tcp: lookup operatorhubio-catalog.olm.svc on 127.0.0.53:53: read udp 127.0.0.1:34378->127.0.0.53:53: read: connection refused\"" source="{operatorhubio-catalog olm}" W0511 15:49:09.198512 1 clientconn.go:1331] [core] grpc: addrConn.createTransport failed to connect to {operatorhubio-catalog.olm.svc:50051 operatorhubio-catalog.olm.svc:50051 0 }. Err: connection error: desc = "transport: Error while dialing dial tcp: lookup operatorhubio-catalog.olm.svc on 127.0.0.53:53: read udp 127.0.0.1:58892->127.0.0.53:53: read: connection refused". Reconnecting... W0511 15:49:13.201911 1 clientconn.go:1331] [core] grpc: addrConn.createTransport failed to connect to {operatorhubio-catalog.olm.svc:50051 operatorhubio-catalog.olm.svc:50051 0 }. Err: connection error: desc = "transport: Error while dialing dial tcp: lookup operatorhubio-catalog.olm.svc on 127.0.0.53:53: read udp 127.0.0.1:56386->127.0.0.53:53: read: connection refused". Reconnecting... time="2022-05-11T15:49:14Z" level=info msg="updating PackageManifest based on CatalogSource changes: {operatorhubio-catalog olm}" action="sync catalogsource" address="operatorhubio-catalog.olm.svc:50051" name=operatorhubio-catalog namespace=olm time="2022-05-11T15:49:14Z" level=warning msg="error getting stream" action="refresh cache" err="rpc error: code = Unavailable desc = connection error: desc = \"transport: Error while dialing dial tcp: lookup operatorhubio-catalog.olm.svc on 127.0.0.53:53: read udp 127.0.0.1:56386->127.0.0.53:53: read: connection refused\"" source="{operatorhubio-catalog olm}" time="2022-05-11T15:49:18Z" level=info msg="updating PackageManifest based on CatalogSource changes: {operatorhubio-catalog olm}" action="sync catalogsource" address="operatorhubio-catalog.olm.svc:50051" name=operatorhubio-catalog namespace=olm time="2022-05-11T15:49:18Z" level=warning msg="error getting stream" action="refresh cache" err="rpc error: code = Unavailable desc = connection error: desc = \"transport: Error while dialing dial tcp: lookup operatorhubio-catalog.olm.svc on 127.0.0.53:53: read udp 127.0.0.1:56386->127.0.0.53:53: read: connection refused\"" source="{operatorhubio-catalog olm}" W0511 15:49:19.260812 1 clientconn.go:1331] [core] grpc: addrConn.createTransport failed to connect to {operatorhubio-catalog.olm.svc:50051 operatorhubio-catalog.olm.svc:50051 0 }. Err: connection error: desc = "transport: Error while dialing dial tcp: lookup operatorhubio-catalog.olm.svc on 127.0.0.53:53: read udp 127.0.0.1:43322->127.0.0.53:53: read: connection refused". Reconnecting... time="2022-05-11T15:49:23Z" level=info msg="updating PackageManifest based on CatalogSource changes: {operatorhubio-catalog olm}" action="sync catalogsource" address="operatorhubio-catalog.olm.svc:50051" name=operatorhubio-catalog namespace=olm time="2022-05-11T15:49:23Z" level=warning msg="error getting stream" action="refresh cache" err="rpc error: code = Unavailable desc = connection error: desc = \"transport: Error while dialing dial tcp: lookup operatorhubio-catalog.olm.svc on 127.0.0.53:53: read udp 127.0.0.1:43322->127.0.0.53:53: read: connection refused\"" source="{operatorhubio-catalog olm}" W0511 15:49:31.769027 1 clientconn.go:1331] [core] grpc: addrConn.createTransport failed to connect to {operatorhubio-catalog.olm.svc:50051 operatorhubio-catalog.olm.svc:50051 0 }. Err: connection error: desc = "transport: Error while dialing dial tcp: lookup operatorhubio-catalog.olm.svc on 127.0.0.53:53: read udp 127.0.0.1:58434->127.0.0.53:53: read: connection refused". Reconnecting... time="2022-05-11T15:49:39Z" level=info msg="updating PackageManifest based on CatalogSource changes: {operatorhubio-catalog olm}" action="sync catalogsource" address="operatorhubio-catalog.olm.svc:50051" name=operatorhubio-catalog namespace=olm time="2022-05-11T15:49:39Z" level=warning msg="error getting stream" action="refresh cache" err="rpc error: code = Unavailable desc = connection error: desc = \"transport: Error while dialing dial tcp: lookup operatorhubio-catalog.olm.svc on 127.0.0.53:53: read udp 127.0.0.1:58434->127.0.0.53:53: read: connection refused\"" source="{operatorhubio-catalog olm}" W0511 15:49:51.331786 1 clientconn.go:1331] [core] grpc: addrConn.createTransport failed to connect to {operatorhubio-catalog.olm.svc:50051 operatorhubio-catalog.olm.svc:50051 0 }. Err: connection error: desc = "transport: Error while dialing dial tcp: lookup operatorhubio-catalog.olm.svc on 127.0.0.53:53: read udp 127.0.0.1:52856->127.0.0.53:53: read: connection refused". Reconnecting... time="2022-05-11T15:50:11Z" level=info msg="updating PackageManifest based on CatalogSource changes: {operatorhubio-catalog olm}" action="sync catalogsource" address="operatorhubio-catalog.olm.svc:50051" name=operatorhubio-catalog namespace=olm time="2022-05-11T15:50:11Z" level=warning msg="error getting stream" action="refresh cache" err="rpc error: code = Unavailable desc = connection error: desc = \"transport: Error while dialing dial tcp: lookup operatorhubio-catalog.olm.svc on 127.0.0.53:53: read udp 127.0.0.1:52856->127.0.0.53:53: read: connection refused\"" source="{operatorhubio-catalog olm}" W0511 15:50:18.522610 1 clientconn.go:1331] [core] grpc: addrConn.createTransport failed to connect to {operatorhubio-catalog.olm.svc:50051 operatorhubio-catalog.olm.svc:50051 0 }. Err: connection error: desc = "transport: Error while dialing dial tcp: lookup operatorhubio-catalog.olm.svc on 127.0.0.53:53: read udp 127.0.0.1:44127->127.0.0.53:53: read: connection refused". Reconnecting... time="2022-05-11T15:50:49Z" level=info msg="updating PackageManifest based on CatalogSource changes: {operatorhubio-catalog olm}" action="sync catalogsource" address="operatorhubio-catalog.olm.svc:50051" name=operatorhubio-catalog namespace=olm time="2022-05-11T15:50:49Z" level=warning msg="error getting stream" action="refresh cache" err="rpc error: code = Unavailable desc = connection error: desc = \"transport: Error while dialing dial tcp: lookup operatorhubio-catalog.olm.svc on 127.0.0.53:53: read udp 127.0.0.1:44127->127.0.0.53:53: read: connection refused\"" source="{operatorhubio-catalog olm}" W0511 15:51:09.692653 1 clientconn.go:1331] [core] grpc: addrConn.createTransport failed to connect to {operatorhubio-catalog.olm.svc:50051 operatorhubio-catalog.olm.svc:50051 0 }. Err: connection error: desc = "transport: Error while dialing dial tcp: lookup operatorhubio-catalog.olm.svc on 127.0.0.53:53: read udp 127.0.0.1:54611->127.0.0.53:53: read: connection refused". Reconnecting... time="2022-05-11T15:51:52Z" level=info msg="updating PackageManifest based on CatalogSource changes: {operatorhubio-catalog olm}" action="sync catalogsource" address="operatorhubio-catalog.olm.svc:50051" name=operatorhubio-catalog namespace=olm time="2022-05-11T15:51:52Z" level=warning msg="error getting stream" action="refresh cache" err="rpc error: code = Unavailable desc = connection error: desc = \"transport: Error while dialing dial tcp: lookup operatorhubio-catalog.olm.svc on 127.0.0.53:53: read udp 127.0.0.1:54611->127.0.0.53:53: read: connection refused\"" source="{operatorhubio-catalog olm}" W0511 15:52:08.251234 1 clientconn.go:1331] [core] grpc: addrConn.createTransport failed to connect to {operatorhubio-catalog.olm.svc:50051 operatorhubio-catalog.olm.svc:50051 0 }. Err: connection error: desc = "transport: Error while dialing dial tcp: lookup operatorhubio-catalog.olm.svc on 127.0.0.53:53: read udp 127.0.0.1:57649->127.0.0.53:53: read: connection refused". Reconnecting... time="2022-05-11T15:52:31Z" level=info msg="updating PackageManifest based on CatalogSource changes: {operatorhubio-catalog olm}" action="sync catalogsource" address="operatorhubio-catalog.olm.svc:50051" name=operatorhubio-catalog namespace=olm time="2022-05-11T15:52:31Z" level=warning msg="error getting stream" action="refresh cache" err="rpc error: code = Unavailable desc = connection error: desc = \"transport: Error while dialing dial tcp: lookup operatorhubio-catalog.olm.svc on 127.0.0.53:53: read udp 127.0.0.1:57649->127.0.0.53:53: read: connection refused\"" source="{operatorhubio-catalog olm}" time="2022-05-11T15:53:59Z" level=info msg="updating PackageManifest based on CatalogSource changes: {operatorhubio-catalog olm}" action="sync catalogsource" address="operatorhubio-catalog.olm.svc:50051" name=operatorhubio-catalog namespace=olm time="2022-05-11T15:53:59Z" level=warning msg="error getting stream" action="refresh cache" err="rpc error: code = Unavailable desc = connection error: desc = \"transport: Error while dialing dial tcp: lookup operatorhubio-catalog.olm.svc on 127.0.0.53:53: read udp 127.0.0.1:57649->127.0.0.53:53: read: connection refused\"" source="{operatorhubio-catalog olm}" W0511 15:54:14.763113 1 clientconn.go:1331] [core] grpc: addrConn.createTransport failed to connect to {operatorhubio-catalog.olm.svc:50051 operatorhubio-catalog.olm.svc:50051 0 }. Err: connection error: desc = "transport: Error while dialing dial tcp: lookup operatorhubio-catalog.olm.svc on 127.0.0.53:53: read udp 127.0.0.1:53018->127.0.0.53:53: read: connection refused". Reconnecting... http2: server: error reading preface from client 135.181.45.47:47980: read tcp 10.1.123.197:5443->135.181.45.47:47980: read: connection reset by peer time="2022-05-11T15:55:53Z" level=info msg="updating PackageManifest based on CatalogSource changes: {operatorhubio-catalog olm}" action="sync catalogsource" address="operatorhubio-catalog.olm.svc:50051" name=operatorhubio-catalog namespace=olm time="2022-05-11T15:55:53Z" level=warning msg="error getting stream" action="refresh cache" err="rpc error: code = Unavailable desc = connection error: desc = \"transport: Error while dialing dial tcp: lookup operatorhubio-catalog.olm.svc on 127.0.0.53:53: read udp 127.0.0.1:53018->127.0.0.53:53: read: connection refused\"" source="{operatorhubio-catalog olm}" W0511 15:56:23.428328 1 clientconn.go:1331] [core] grpc: addrConn.createTransport failed to connect to {operatorhubio-catalog.olm.svc:50051 operatorhubio-catalog.olm.svc:50051 0 }. Err: connection error: desc = "transport: Error while dialing dial tcp: lookup operatorhubio-catalog.olm.svc on 127.0.0.53:53: read udp 127.0.0.1:42536->127.0.0.53:53: read: connection refused". Reconnecting... time="2022-05-11T15:57:31Z" level=info msg="updating PackageManifest based on CatalogSource changes: {operatorhubio-catalog olm}" action="sync catalogsource" address="operatorhubio-catalog.olm.svc:50051" name=operatorhubio-catalog namespace=olm time="2022-05-11T15:57:31Z" level=warning msg="error getting stream" action="refresh cache" err="rpc error: code = Unavailable desc = connection error: desc = \"transport: Error while dialing dial tcp: lookup operatorhubio-catalog.olm.svc on 127.0.0.53:53: read udp 127.0.0.1:42536->127.0.0.53:53: read: connection refused\"" source="{operatorhubio-catalog olm}" time="2022-05-11T15:57:59Z" level=info msg="updating PackageManifest based on CatalogSource changes: {operatorhubio-catalog olm}" action="sync catalogsource" address="operatorhubio-catalog.olm.svc:50051" name=operatorhubio-catalog namespace=olm time="2022-05-11T15:57:59Z" level=warning msg="error getting stream" action="refresh cache" err="rpc error: code = Unavailable desc = connection error: desc = \"transport: Error while dialing dial tcp: lookup operatorhubio-catalog.olm.svc on 127.0.0.53:53: read udp 127.0.0.1:42536->127.0.0.53:53: read: connection refused\"" source="{operatorhubio-catalog olm}" W0511 15:58:27.457433 1 clientconn.go:1331] [core] grpc: addrConn.createTransport failed to connect to {operatorhubio-catalog.olm.svc:50051 operatorhubio-catalog.olm.svc:50051 0 }. Err: connection error: desc = "transport: Error while dialing dial tcp: lookup operatorhubio-catalog.olm.svc on 127.0.0.53:53: read udp 127.0.0.1:59315->127.0.0.53:53: read: connection refused". Reconnecting... time="2022-05-11T16:00:22Z" level=info msg="updating PackageManifest based on CatalogSource changes: {operatorhubio-catalog olm}" action="sync catalogsource" address="operatorhubio-catalog.olm.svc:50051" name=operatorhubio-catalog namespace=olm time="2022-05-11T16:00:22Z" level=warning msg="error getting stream" action="refresh cache" err="rpc error: code = Unavailable desc = connection error: desc = \"transport: Error while dialing dial tcp: lookup operatorhubio-catalog.olm.svc on 127.0.0.53:53: read udp 127.0.0.1:59315->127.0.0.53:53: read: connection refused\"" source="{operatorhubio-catalog olm}" W0511 16:00:49.428950 1 clientconn.go:1331] [core] grpc: addrConn.createTransport failed to connect to {operatorhubio-catalog.olm.svc:50051 operatorhubio-catalog.olm.svc:50051 0 }. Err: connection error: desc = "transport: Error while dialing dial tcp: lookup operatorhubio-catalog.olm.svc on 127.0.0.53:53: read udp 127.0.0.1:43116->127.0.0.53:53: read: connection refused". Reconnecting... time="2022-05-11T16:02:16Z" level=info msg="updating PackageManifest based on CatalogSource changes: {operatorhubio-catalog olm}" action="sync catalogsource" address="operatorhubio-catalog.olm.svc:50051" name=operatorhubio-catalog namespace=olm time="2022-05-11T16:02:16Z" level=warning msg="error getting stream" action="refresh cache" err="rpc error: code = Unavailable desc = connection error: desc = \"transport: Error while dialing dial tcp: lookup operatorhubio-catalog.olm.svc on 127.0.0.53:53: read udp 127.0.0.1:43116->127.0.0.53:53: read: connection refused\"" source="{operatorhubio-catalog olm}" time="2022-05-11T16:02:31Z" level=info msg="updating PackageManifest based on CatalogSource changes: {operatorhubio-catalog olm}" action="sync catalogsource" address="operatorhubio-catalog.olm.svc:50051" name=operatorhubio-catalog namespace=olm time="2022-05-11T16:02:31Z" level=warning msg="error getting stream" action="refresh cache" err="rpc error: code = Unavailable desc = connection error: desc = \"transport: Error while dialing dial tcp: lookup operatorhubio-catalog.olm.svc on 127.0.0.53:53: read udp 127.0.0.1:43116->127.0.0.53:53: read: connection refused\"" source="{operatorhubio-catalog olm}" W0511 16:02:41.342007 1 clientconn.go:1331] [core] grpc: addrConn.createTransport failed to connect to {operatorhubio-catalog.olm.svc:50051 operatorhubio-catalog.olm.svc:50051 0 }. Err: connection error: desc = "transport: Error while dialing dial tcp: lookup operatorhubio-catalog.olm.svc on 127.0.0.53:53: read udp 127.0.0.1:54276->127.0.0.53:53: read: connection refused". Reconnecting... http2: server: error reading preface from client 135.181.45.47:11150: read tcp 10.1.123.197:5443->135.181.45.47:11150: read: connection reset by peer time="2022-05-11T16:04:19Z" level=info msg="updating PackageManifest based on CatalogSource changes: {operatorhubio-catalog olm}" action="sync catalogsource" address="operatorhubio-catalog.olm.svc:50051" name=operatorhubio-catalog namespace=olm time="2022-05-11T16:04:19Z" level=warning msg="error getting stream" action="refresh cache" err="rpc error: code = Unavailable desc = connection error: desc = \"transport: Error while dialing dial tcp: lookup operatorhubio-catalog.olm.svc on 127.0.0.53:53: read udp 127.0.0.1:54276->127.0.0.53:53: read: connection refused\"" source="{operatorhubio-catalog olm}" http2: server: error reading preface from client 135.181.45.47:25657: read tcp 10.1.123.197:5443->135.181.45.47:25657: read: connection reset by peer W0511 16:04:59.120678 1 clientconn.go:1331] [core] grpc: addrConn.createTransport failed to connect to {operatorhubio-catalog.olm.svc:50051 operatorhubio-catalog.olm.svc:50051 0 }. Err: connection error: desc = "transport: Error while dialing dial tcp: lookup operatorhubio-catalog.olm.svc on 127.0.0.53:53: read udp 127.0.0.1:54424->127.0.0.53:53: read: connection refused". Reconnecting... W0511 16:06:35.724431 1 clientconn.go:1331] [core] grpc: addrConn.createTransport failed to connect to {operatorhubio-catalog.olm.svc:50051 operatorhubio-catalog.olm.svc:50051 0 }. Err: connection error: desc = "transport: Error while dialing dial tcp: lookup operatorhubio-catalog.olm.svc on 127.0.0.53:53: read udp 127.0.0.1:39533->127.0.0.53:53: read: connection refused". Reconnecting... time="2022-05-11T16:06:39Z" level=info msg="updating PackageManifest based on CatalogSource changes: {operatorhubio-catalog olm}" action="sync catalogsource" address="operatorhubio-catalog.olm.svc:50051" name=operatorhubio-catalog namespace=olm time="2022-05-11T16:06:39Z" level=warning msg="error getting stream" action="refresh cache" err="rpc error: code = Unavailable desc = connection error: desc = \"transport: Error while dialing dial tcp: lookup operatorhubio-catalog.olm.svc on 127.0.0.53:53: read udp 127.0.0.1:39533->127.0.0.53:53: read: connection refused\"" source="{operatorhubio-catalog olm}" ```
timflannagan commented 2 years ago

@joaomlneto Awesome - should we close this out, or do you think this is worth documenting? We mainly dev/test on kind and OCP clusters, although we have a daily action that runs OLM's quickstart instructions on minikube clusters. It might be possible to also extend those tests to microk8s clusters, but it's unclear whether this is worth the extra maintenance over time.

exdx commented 2 years ago

@joaomlneto good to see that you got it working. This issue can serve as documentation for any other users that look to install OLM onto microk8s. They would have to enable RBAC on the cluster via microk8s enable rbac for packageserver to install successfully.