OpenShift
![]() |
# deploy DB $ oc apply -f timescaledb.yaml secret/db-secret created serviceaccount/timescaledb created statefulset.apps/timescaledb created service/timescaledb created # rights to serviceaccount $ oc adm policy add-scc-to-user anyuid -z timescaledb -n xormon clusterrole.rbac.authorization.k8s.io/system:openshift:scc:anyuid added: "timescaledb"
$ oc get pod -n xormon NAME READY STATUS RESTARTS AGE timescaledb-0 1/1 Running 0 110s
# deploy xormon $ oc apply -f xormon.yaml configmap/xormon-config created secret/xormon-secret created serviceaccount/xormon created persistentvolumeclaim/xormon-data created deployment.apps/xormon created service/xormon created service/xormon-agent created route.route.openshift.io/xormon created # rights to serviceaccount $ oc adm policy add-scc-to-user anyuid -z xormon -n xormon clusterrole.rbac.authorization.k8s.io/system:openshift:scc:anyuid added: "xormon" # check $ oc get pod -n xormon NAME READY STATUS RESTARTS AGE timescaledb-0 1/1 Running 0 5m5s xormon-7b8f97674d-qrwfx 1/1 Running 0 2m8s
![]() |