This repository was archived by the owner on Sep 21, 2020. It is now read-only.
This repository was archived by the owner on Sep 21, 2020. It is now read-only.
CSV keeps pending due to "CSV missing minimum kube version specification" #43
Closed
Description
I followed the document at https://github.com/operator-framework/getting-started/blob/master/README.md#deploy-the-operator to deploy the CSV, but the CSV keeps pending due to following errors of CSV missing minimum kube version specification
.
root@gyliu-dev1:~/test# kubectl get ClusterServiceVersion memcachedoperator.v0.0.1 -o json | jq '.status'
{
"certsLastUpdated": null,
"certsRotateAt": null,
"conditions": [
{
"lastTransitionTime": "2019-08-19T06:57:16Z",
"lastUpdateTime": "2019-08-19T06:57:16Z",
"message": "requirements not yet checked",
"phase": "Pending",
"reason": "RequirementsUnknown"
},
{
"lastTransitionTime": "2019-08-19T06:57:16Z",
"lastUpdateTime": "2019-08-19T06:57:16Z",
"message": "one or more requirements couldn't be found",
"phase": "Pending",
"reason": "RequirementsNotMet"
}
],
"lastTransitionTime": "2019-08-19T06:57:16Z",
"lastUpdateTime": "2019-08-19T06:57:16Z",
"message": "one or more requirements couldn't be found",
"phase": "Pending",
"reason": "RequirementsNotMet",
"requirementStatus": [
{
"group": "operators.coreos.com",
"kind": "ClusterServiceVersion",
"message": "CSV missing minimum kube version specification",
"name": "memcachedoperator.v0.0.1",
"status": "NotPresent",
"version": "v1alpha1"
},
{
"group": "apiextensions.k8s.io",
"kind": "CustomResourceDefinition",
"message": "CRD is present and Established condition is true",
"name": "memcacheds.cache.example.com",
"status": "Present",
"uuid": "51b571c2-c24e-11e9-be38-0242d843cc68",
"version": "v1beta1"
},
{
"dependents": [
{
"group": "rbac.authorization.k8s.io",
"kind": "PolicyRule",
"message": "namespaced rule:{\"verbs\":[\"*\"],\"apiGroups\":[\"\"],\"resources\":[\"pods\",\"services\",\"endpoints\",\"persistentvolumeclaims\",\"events\",\"configmaps\",\"secrets\"]}",
"status": "Satisfied",
"version": "v1beta1"
},
{
"group": "rbac.authorization.k8s.io",
"kind": "PolicyRule",
"message": "namespaced rule:{\"verbs\":[\"get\"],\"apiGroups\":[\"\"],\"resources\":[\"namespaces\"]}",
"status": "NotSatisfied",
"version": "v1beta1"
},
{
"group": "rbac.authorization.k8s.io",
"kind": "PolicyRule",
"message": "namespaced rule:{\"verbs\":[\"*\"],\"apiGroups\":[\"apps\"],\"resources\":[\"deployments\",\"daemonsets\",\"replicasets\",\"statefulsets\"]}",
"status": "Satisfied",
"version": "v1beta1"
},
{
"group": "rbac.authorization.k8s.io",
"kind": "PolicyRule",
"message": "namespaced rule:{\"verbs\":[\"get\",\"create\"],\"apiGroups\":[\"monitoring.coreos.com\"],\"resources\":[\"servicemonitors\"]}",
"status": "Satisfied",
"version": "v1beta1"
},
{
"group": "rbac.authorization.k8s.io",
"kind": "PolicyRule",
"message": "namespaced rule:{\"verbs\":[\"update\"],\"apiGroups\":[\"apps\"],\"resources\":[\"deployments/finalizers\"],\"resourceNames\":[\"memcached-operator\"]}",
"status": "Satisfied",
"version": "v1beta1"
},
{
"group": "rbac.authorization.k8s.io",
"kind": "PolicyRule",
"message": "namespaced rule:{\"verbs\":[\"*\"],\"apiGroups\":[\"cache.example.com\"],\"resources\":[\"*\"]}",
"status": "Satisfied",
"version": "v1beta1"
}
],
"group": "",
"kind": "ServiceAccount",
"message": "Policy rule not satisfied for service account",
"name": "memcached-operator",
"status": "PresentNotSatisfied",
"version": "v1"
}
]
}