A prometheus exporter to expose metrics about various features used in Openshift Dedicated Clusters.
- Identity Provider
- Cluster Admin
- Limited Support
- Cluster Proxy
- Cluster Proxy CA Expiry Timestamp
- Cluster Proxy CA Valid
- Cluster ID
- ControlPlaneMachineSet State
- Create
Namespace,RoleandRoleBinding. Requires yq.
for k in "Namespace" "Role" "RoleBinding"; do;
k=$k yq '.objects[].spec.resources[] | select(.kind==strenv(k))' \
hack/olm-registry/olm-artifacts-template.yaml \
| oc apply -f - ;
done- Create
(Cluster-)Role,(Cluster-)RoleBindingandServiceAccount.
oc apply -f ./deploy/10_osd-metrics-exporter.ClusterRole.yaml
oc apply -f ./deploy/10_osd-metrics-exporter_openshift-osd-metrics.Role.yaml
oc apply -f ./deploy/10_osd-metrics-exporter_openshift-osd-metrics.ServiceAccount.yaml
oc apply -f ./deploy/20_osd-metrics-exporter.ClusterRoleBinding.yaml
oc apply -f ./deploy/20_osd-metrics-exporter_openshift-osd-metrics.RoleBinding.yaml
oc apply -f ./resources/10_osd-metrics-exporter_openshift-config.Role.yaml
oc apply -f ./resources/10_osd-metrics-exporter_openshift-config.RoleBinding.yaml- Optionally authenticate as the
serviceaccount.
# local crc cluster
oc login "$(oc get infrastructures cluster -o json | jq -r '.status.apiServerURL')" --token "$(oc create token -n openshift-osd-metrics osd-metrics-exporter)"
# openshift cluster
oc login "$(oc get infrastructures cluster -o json | jq -r '.status.apiServerURL')" --token "$(oc create token -n openshift-osd-metrics osd-metrics-exporter --as backplane-cluster-admin)"- Switch to project
oc project openshift-osd-metrics- Build and run the operator
make go-build
./build/_output/bin/osd-metrics-exporterNote that the tests expect that two environment variables are set for the tests to be able to run. The suite will quickly fail if these are unset:
OCM_TOKENOCM_CLUSTER_ID
Here is an example of running the tests in a local environment:
$ cd <PROJECT_ROOT>/test/e2e/
$ export OCM_TOKEN=$(ocm token)
$ export OCM_CLUSTER_ID=<YOUR-CLUSTER-ID>
$ DISABLE_JUNIT_REPORT=true ginkgo run --tags=osde2e,e2e --procs 4 --flake-attempts 3 --trace -vv .